/* Our Candidates slider */
.testimonials-slider-wrapper {
    position: relative;
    overflow: visible;
  }
  
  /* keep the whole slider contained, and make room at the top for popped-out images */
  .testimonials-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 70px; /* make room for the avatar that sits above tiles */
  }
  
  /* allow slides/tiles themselves to let children overflow */
  .swiper-wrapper,
  .swiper-slide,
  .testimonial-tile {
    overflow: visible !important;
  }
  
  .swiper{
    overflow: visible !important;
  }
  /* ensure avatar sits above everything inside the slider */
  .testimonial-image-wrapper {
    z-index: 9999;
    top: -50px;           /* adjust as needed */
    transform: translateX(-50%);
  }
  .testimonial-tile {
    background: #e6f3ff;
    border-radius: 20px;
    padding: 50px 25px 25px;
    margin: 0 8px;
    height: 350px;
    width: 320px;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid #e8f4fd;
  }
  
  .testimonial-tile:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-image-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: visible;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 100;
  }
  
  .testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .student-testimonials-section .testimonial-image{
    object-fit: fill;
  }
  .testimonial-content {
    padding-top: 50px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .testimonial-message {
    flex-grow: 1;
    margin-bottom: 20px;
  }
  
  .message-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Rubik', sans-serif;
  }
  
  .testimonial-modal .read-more-btn,
  .achievement-card .read-more-btn{
    background: none;
    border: none;
    color: #4a90e2;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    margin-top: 8px;
    font-family: 'Rubik', sans-serif;
  }
  
  .testimonial-modal .read-more-btn:hover,
  .achievement-card .read-more-btn:hover {
    color: #357abd;
  }
  
  
  
  .testimonial-details {
    margin-top: auto;
  }
  
  .student-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
    font-family: 'Rubik', sans-serif;
  }
  
  .course-name {
    font-size: 13px;
    color: #555;
    margin: 0 0 15px 0;
    font-family: 'Rubik', sans-serif;
  }
  
  .star-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
  }
  
  .star {
    font-size: 16px;
    color: #ddd;
    transition: color 0.2s ease;
  }
  
  .star.filled {
    color: #ffd700;
  }
  
  .swiper-pagination {
    position: relative;
    margin-top: 30px;
  }
  
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #4a90e2;
    opacity: 0.3;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
  }
  
  .mobile-nav {
    display: none;
  }
  
  .student-testimonials-section .swiper-button-next,
  .student-testimonials-section .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: #4a90e2;
    font-size: 16px;
    margin-top: -15px;
  }
  
  .student-testimonials-section .swiper-button-next:after,
  .student-testimonials-section .swiper-button-prev:after {
    font-size: 40px !important;
    font-weight: bold;
    color: #4a90e2;
  }
  
  .achievements-slider .swiper-button-next:hover,
  .achievements-slider .swiper-button-prev:hover {
    color: #357abd;
  }
  
  .swiper-button-next:hover:after,
  .swiper-button-prev:hover:after {
    color: #357abd;
  }
  
  .testimonial-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .testimonial-modal .modal-content {
    background: #d2e8f7;
    width: 90%;
    max-width: 600px;
    max-height: 550px;
    border-radius: 5px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .testimonial-modal .modal-content .close-modal{
    background: #d2e8f7;
    height: 30px;
    width: 30px;
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -15px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  }
  @keyframes modalSlideIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  .close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #666;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: #f8f9fa;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
  }
  
  .close-modal:hover {
    background: #e9ecef;
    color: #333;
  }
  
  .testimonial-modal .modal-header {
    padding: 30px 30px 0px;
    text-align: center;
    border-bottom: 0;
    min-height: auto;
  }
  
  .testimonial-modal .modal-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    font-family: 'Rubik', sans-serif;
  }
  
  .testimonial-modal .modal-header p {
    margin: 0;
    font-size: 1rem;
    color: #4a90e2;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
  }
  
  .testimonial-modal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
  }
  
  .testimonial-modal .modal-text {
    padding: 30px;
    color: #333;
    line-height: 22px;
    font-size: 17px;
    text-align: justify;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
  }
  
  @media (max-width: 768px) {
    
    .testimonial-tile {
      width: 280px;
      height: 320px;
      margin: 0 auto;
    }
    
    .swiper-slide {
      display: flex;
      justify-content: center;
      overflow: visible !important;
    }
    
    .mobile-nav {
      display: block;
    }
    
    .testimonial-modal .modal-content {
      width: 95%;
      height: auto;
      max-height: 500px;
    }
    
    .testimonial-modal .modal-header {
      padding: 20px 20px 15px;
    }
    
    .testimonial-modal .modal-header h3 {
      font-size: 1.2rem;
    }
    
    .testimonial-modal .modal-text {
      padding: 20px;
      font-size: 1rem;
    }
    .student-testimonials-section{
        padding: 45px 0 60px 0 !important;
    }
    .student-testimonials-section h2.testimonial_title,
    .achievements-section .section-title{
        font-size: 28px !important;
    }
  }

  /* Achievements slider */


  .achievements-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
  }
  
  .achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }
  
  .achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  
  .achievements-section .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 50px;
    font-family: 'Rubik', sans-serif;
  }
  
  .achievement-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    max-width: 100%;
    word-wrap: break-word;
    position: relative;
  }
  
  .achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  }
  
  .achievement-image-wrapper {
    height: 60%;
    overflow: hidden;
    position: relative;
  }
  .achievements-section .achievement-image-wrapper{
    height: 330px;
    overflow: hidden;
  }
  .achievement-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .achievement-card:hover .achievement-image {
    transform: scale(1.1);
  }
  
  .achievement-content {
    padding: 20px;
    height: 40%;
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
  }
  .achievements-section .achievement-content {
    height: auto;
    padding-bottom: 20px;
  }
  .achievements-section .achievement-content h3.achievement-title{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 70px;
  }
  .achievement-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .achievement-description {
    flex: 1;
    margin-bottom: 15px;
    position: relative;
  }
  .achievements-section .achievement-date{
    position: absolute;
    top: 12px;
    right: 12px;
    background: #337ab7;
    color: #fff;
    padding: 2px 10px;
    border-radius: 30px;
  }
  .achievements-section .achievement-date i{
    color: #fff;
    margin-right: 5px;
  }
  .description-text {
    color: #333;
    line-height: 1.4;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Rubik', sans-serif;
  }
  .achievement-card .achievement-description{
    margin-bottom: 0;
  }
  .read-more-btn {
    background: none;
    border: none;
    color: #3fb8d3;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    margin-top: 5px;
    display: none;
    font-family: 'Rubik', sans-serif;
  }
  
  .read-more-btn:hover {
    color: #2a9bb8;
  }
  
  .achievement-date {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
    font-weight: 700;
    justify-content: center;
  }
  
  .achievement-date i {
    margin-right: 8px;
    color: #667eea;
  }
  
  .achievements-slider .swiper-button-prev,
  .achievements-slider .swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #667eea;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 0;
  }
  
  .achievements-slider .swiper-button-prev:hover,
  .achievements-slider .swiper-button-next:hover {
    background: #fff;
    transform: scale(1.1);
  }
  
  .achievements-slider .swiper-button-prev::after,
  .achievements-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
  }
  
  
  
  /* Achievement Modal Styles */
  .achievement-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .achievement-modal .modal-content {
    background: #d2e8f7;
    width: 90%;
    max-width: 600px;
    max-height: 550px;
    border-radius: 5px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  @keyframes modalSlideIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  .close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #666;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: #f8f9fa;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
  }
  
  .close-modal:hover {
    background: #e9ecef;
    color: #333;
  }
  
  .achievement-modal .modal-header {
    padding: 30px 30px 0px;
    border-bottom: 0;
    text-align: center;
  }
  
  .achievement-modal .modal-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
  }
  
  .achievement-modal .modal-date {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
  }
  
  .achievement-modal .modal-date i {
    margin-right: 8px;
    color: #667eea;
  }
  
  .achievement-modal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
  }
  
  .achievement-modal .modal-text {
    padding: 30px;
    color: #333;
    line-height: 22px;
    font-size: 17px;
    text-align: justify;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
  }
  .achievement-modal .close-modal{
    background: #d2e8f7;
    height: 30px;
    width: 30px;
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -15px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  }
  .achievement-card .achievement-description{
    display: flex;
    flex-direction: column;
  }
  .achievement-card .achievement-description button.read-more-btn{
    margin-left: auto;
  }
  @media (max-width: 768px) {
    .achievements-section {
      padding: 40px 0;
    }
    
    .achievements-section .section-title {
      font-size: 2rem;
      margin-bottom: 30px;
    }
    
    .achievement-card {
      height: 500px;
      margin: 0 5px;
    }
    
    .achievement-content {
      padding: 15px;
      padding-bottom: 60px;
    }
    
    .achievements-section .achievement-content{
        padding-bottom: 15px;
    }

    .achievement-modal .modal-content {
      width: 95%;
      height: 80vh;
      max-height: 500px;
    }
    
    .achievement-modal .modal-header {
      padding: 20px 20px 15px;
    }
    
    .achievement-modal .modal-header h3 {
      font-size: 1.2rem;
    }
    
    .achievement-modal .modal-text {
      padding: 20px;
      font-size: 1rem;
    }
    
    .achievement-modal .modal-close {
      top: 10px;
      right: 10px;
      width: 30px;
      height: 30px;
      font-size: 16px;
    }
    
    
    .achievements-slider .swiper-button-prev,
    .achievements-slider .swiper-button-next {
      width: 40px !important;
      height: 40px !important;
      font-size: 16px;
    }
    .student-testimonials-section .swiper-button-next:after, .student-testimonials-section .swiper-button-prev:after{
        font-size: 30px !important;
    }
    .achievements-section .achievement-image-wrapper{
        height: 275px;
    }
  }

  /* industry-testimonials css */
  .industry-testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
  }
  
  .industry-testimonials {
    overflow: hidden;
    position: relative;
    padding-top: 80px;
  }
  
  .industry-testimonials .swiper-wrapper,
  .industry-testimonials .swiper-slide,
  .industry-testimonials .industry-tile {
    overflow: visible !important;
  }
  
  .industry-testimonials.swiper {
    overflow: visible !important;
  }
  
  .industry-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
  }
  
  .industry-testimonials-section .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 80px;
    position: relative;
    font-family: 'Rubik', sans-serif;
  }
  
  .industry-testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  
  .industry-tile {
    background: #d8fefaff;
    width: 400px;
    height: 460px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #cce7ff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0 8px;
    position: relative;
    padding: 90px 25px 25px;
    overflow: visible;
  }
  
  .industry-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  
  .leader-image-wrapper {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
    z-index: 100;
  }
  
  .leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .testimonial-details {
    margin-top: auto;
    text-align: center;
    font-family: 'Rubik', sans-serif;
  }
  
  .industry-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
    font-family: 'Rubik', sans-serif;
  }
  
  .industry-designation {
    font-size: 13px;
    color: #0c5edd;
    margin: 0;
    font-weight: 600;
  }
  
  .testimonial-content {
    padding-top: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .testimonial-text {
    flex: 1;
    margin-bottom: 20px;
  }
  
  .testimonial-comment {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    text-align: center;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
  }
  
  .read-more-btn {
    background: none;
    border: none;
    color: #3fb8d3;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    font-size: 0.8rem;
    margin-top: 10px;
    display: none;
  }
  
  .read-more-btn:hover {
    color: #2a9bb8;
  }
  
  .testimonial-modal-new {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
  }
  
  .testimonial-modal-new .modal-content-new {
    background: #d2e8f7;
    width: 90%;
    max-width: 600px;
    max-height: 550px;
    border-radius: 5px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .testimonial-modal-new .modal-content-new .modal-close{
    background: #d2e8f7;
    height: 30px;
    width: 30px;
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -15px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    color: #666;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .testimonial-modal .modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .testimonial-modal .modal-close:hover {
    color: #666;
  }
  
  .modal-header-new {
    padding: 30px 30px 10px;
    border-bottom: 0;
    text-align: center;
    min-height: auto;
  }
  
  .modal-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
  }
  
  .modal-designation {
    font-size: 1rem;
    color: #3fb8d3;
    font-weight: 600;
    margin: 0;
  }
  
  .modal-body-new {
    padding: 30px;
    color: #333;
    line-height: 22px;
    font-size: 17px;
    text-align: justify;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
    overflow-y: auto;
  }
  .modal-body-new:before{
    content: "“";
    font-size: 40px;
    vertical-align: bottom;
    position: relative;
    top: -12px;
    line-height: 0;
  }
  .modal-body-new:after{
    content: "”";
    font-size: 40px;
    vertical-align: top;
    padding-top: 17px;
    display: inline-block;
    line-height: 0;
  }
  .industry-testimonials .swiper-button-prev,
  .industry-testimonials .swiper-button-next {
    width: 45px;
    height: 45px;
    background: none;
    border: 2px solid #667eea;
    border-radius: 0;
    color: #667eea;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  .industry-testimonials .swiper-button-prev:hover,
  .industry-testimonials .swiper-button-next:hover {
    background: #667eea;
    color: #fff;
  }
  
  .industry-testimonials .swiper-button-prev::after,
  .industry-testimonials .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
  }
  
  @media (max-width: 768px) {
    .industry-testimonials-section {
      padding: 60px 0;
    }
    
    .industry-testimonials-section .section-title {
      font-size: 28px;
      margin-bottom: 60px;
    }
    
    .testimonial-content {
      padding: 0px;
    }
  
    .industry-tile {
      width: 380px;
      height: 420px;
      margin: 0 5px;
    }
    
    .leader-image-wrapper {
      width: 140px;
      height: 140px;
    }
    
    .testimonial-content {
      padding: 20px;
    }
    
    .industry-testimonials .swiper-button-prev,
    .industry-testimonials .swiper-button-next {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }
    .testimonial-modal-new .modal-content-new{
        max-height: 500px;
    }
  }
  
  @media (max-width: 480px) {
    .industry-tile {
      width: 340px;
      height: 400px;
    }
    
    .testimonial-content {
      padding: 0px;
    }
  
    .leader-image-wrapper {
      width: 120px;
      height: 120px;
    }
    
    .testimonial-modal .modal-content {
      width: 95%;
    }
    
    .testimonial-modal .modal-header {
      padding: 20px 20px 15px;
    }
    
    .testimonial-modal .modal-header h3 {
      font-size: 1.2rem;
    }
    
    .testimonial-modal .modal-text {
      padding: 20px;
      font-size: 1rem;
    }
  }
  .student-testimonials-section h2.testimonial_title{
    text-align: center;
    margin-bottom: 50px; 
    color: #333; 
    font-size: 40px; 
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
  }
  .industry-testimonials .testimonial-text .testimonial-comment{
    position: relative;
  }
  .industry-testimonials .testimonial-text .testimonial-comment::after{
    content: "”";
    font-size: 40px;
    vertical-align: top;
    padding-top: 17px;
    display: inline-block;
    line-height: 0;
  }
  .industry-testimonials .testimonial-text .testimonial-comment::before{
    content: "“";
    font-size: 40px;
    vertical-align: bottom;
    position: relative;
    top: -12px;
    line-height: 0;
  }


  /* ===== Section Styling ===== */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
  }
  
  .social-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 80px;
    position: relative;
    font-family: 'Rubik', sans-serif;
  }
  
  .social-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
  }
  
  /* ===== Container ===== */
  .social-testimonials-section .container {
    max-width: 1400px;
    width:100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ===== Swiper ===== */
  .social-swiper {
    padding-bottom: 60px;
    position: relative;
  }
  
  .social-card-wrapper {
    width: 100%;
    height: 550px;
  }
  
  /* Navigation Arrows */
  .social-testimonials-section .swiper-button-next,
  .social-testimonials-section .swiper-button-prev {
    color: #3498db !important;
    background: transparent;
    border: 2px solid #3498db;
    border-radius: 50%;
    width: 35px !important;
    height: 35px !important;
    margin-top: -17px !important;
    transition: all 0.3s ease;
  }
  
  .social-testimonials-section .swiper-button-next:hover,
  .social-testimonials-section .swiper-button-prev:hover {
    border-color: #2980b9;
    color: #2980b9 !important;
    transform: scale(1.1);
  }
  
  .social-testimonials-section .swiper-button-next:after,
  .social-testimonials-section .swiper-button-prev:after {
    font-size: 12px !important;
    font-weight: bold;
  }
  
  /* ===== Card ===== */
  .social-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 88%;
    height: 100%;
    padding: 3px;
    background: linear-gradient(#6dd4ea, #3fb8d3);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
  }
  
  .social-card::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 17px;
    z-index: 1;
  }
  
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    border-radius: 17px;
  }
  
  .social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .social-card:hover img {
    transform: scale(1.02);
  }
  
  /* Play Button */
  .youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 60px;
    pointer-events: none;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    z-index: 3;
  }
  
  .social-card:hover .youtube-play-button {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  /* ===== Swiper Pagination ===== */
  .social-testimonials-section .swiper-pagination {
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }
  
  .social-testimonials-section .swiper-pagination-bullet {
    background: #bdc3c7 !important;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
  }
  
  .social-testimonials-section .swiper-pagination-bullet-active {
    background: #3498db !important;
    transform: scale(1.2);
  }
  
  /* ===== Modal ===== */
  .youtube-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .youtube-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .youtube-modal-content.video {
    aspect-ratio: 16/9;
  }
  
  .youtube-modal-content.image {
    max-height: 80vh;
    background: #fff;
  }
  
  .youtube-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .youtube-modal img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .youtube-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 1024px) {
    .social-testimonials-section .swiper-button-next,
    .social-testimonials-section .swiper-button-prev {
      width: 30px !important;
      height: 30px !important;
      margin-top: -15px !important;
    }
    
    .social-testimonials-section .swiper-button-next:after,
    .social-testimonials-section .swiper-button-prev:after {
      font-size: 10px !important;
    }
  }
  
  @media (max-width: 768px) {
    .social-section {
      padding: 40px 0;
    }
    
    .social-section h2 {
      font-size: 40px;
      margin-bottom: 30px;
    }
    
    .social-testimonials-section .container {
      padding: 0 15px;
    }
    
    .social-testimonials-section .swiper-button-next,
    .social-testimonials-section .swiper-button-prev {
      width: 25px !important;
      height: 25px !important;
      margin-top: -12px !important;
    }
    
    .social-testimonials-section .swiper-button-next:after,
    .social-testimonials-section .swiper-button-prev:after {
      font-size: 8px !important;
    }
    .social-card-wrapper{
        height: auto;
    }
    .social-section h2 {
        font-size: 28px;
      }
    .social-card{
        width: 100%;
    }  
  }
  
  @media (max-width: 480px) {
    
    .social-section h2 {
      font-size: 28px;
    }
  }
  /* .industry-testimonials .testimonial-text .read-more-btn{
    display: none !important;
  } */
  .industry-testimonials .testimonial-text .testimonial-comment{
    max-width: 100%;
  }
  .industry-testimonials-section .testimonial-content .testimonial-text{
    display: flex;
    flex-direction: column;
  }
  .industry-testimonials-section .testimonial-content .testimonial-text .read-more-btn{
    margin-left: auto;
    text-decoration: underline;
  }
  .student-testimonials-section .testimonial-message{
    display: flex;
    flex-direction: column;
  }
  .student-testimonials-section .testimonial-message .read-more-btn{
    display: block;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    background-color: transparent;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    color: #3498db;
    font-family: 'Rubik', sans-serif;
    margin-left: auto;
    margin-top: 0;
  }