
/* Typing heading */

.typing-heading {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1em;
  font-family: 'Rubik', sans-serif;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
}

.typing-text {
  color: #3CB9E5;
  border-right: 4px solid #3CB9E5;
  padding-left: 10px;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Tablet */
@media (max-width: 768px) {
  .typing-heading {
    font-size: 42px;
    flex-wrap: wrap;
  }

  .typing-text {
    padding-left: 4px;
    border-right: 2px solid #20006D;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .typing-heading {
    font-size: 20px;
    white-space: normal;
  }

  .typing-text {
    padding-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
}



/* Scroll Sidebar */

  .scroll-sidebar {
  max-height: 410px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
  box-sizing: border-box;
  scroll-behavior: smooth;

  /* Firefox Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #3CB9E5 #f1f1f1;
}

/* Elementor margin fix */
.scroll-sidebar .elementor-widget,
.scroll-sidebar .elementor-container {
  margin-top: 0 !important;
}

/* Chrome / Edge / Safari Scrollbar */
.scroll-sidebar::-webkit-scrollbar {
  width: 8px;
}
.scroll-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.scroll-sidebar::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  transition: background 0.3s ease;
}
.scroll-sidebar::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Optional: Responsive (smaller height on mobile) */
@media (max-width: 767px) {
  .scroll-sidebar {
    max-height: 200px;
  }
}




/* --- Smooth Infinite Sliding Text (Elementor version) --- */

.sliding-text {
  width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.sliding-text .elementor-widget {
  display: inline-block;
  white-space: nowrap;
}

.sliding-text .elementor-widget-container {
  display: inline-block;
}

.sliding-text .elementor-heading-title {
  display: inline-block;
  font-weight: 600;
  font-size: 28px;
  color: #0E0047;
  margin: 0;
  padding-right: 60px; /* spacing between repeats */
}

/* Keyframes for continuous scroll */
@keyframes scrollText {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sliding-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText var(--slide-speed, 15s) linear infinite;
}

@media (min-width: 900px) {
  .sliding-text .elementor-heading-title { font-size: 34px; }
}
@media (max-width: 480px) {
  .sliding-text .elementor-heading-title { font-size: 18px; }
}




/* Timeline Section */


 .academic-legacy-section {
    
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.academic-legacy-section .section-title {
    text-align: center;
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #182034;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #182034;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    width: 100%;
    clear: both;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
    padding: 40px 30px 10px 30px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
    padding: 40px 30px 10px 30px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    background: #182034;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 0 4px #ffffff;
}

.timeline-content {
    width: calc(50% - 50px);
    transition: all 0.3s ease;
}

.timeline-year {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #182034;
    font-size: 1rem;
    margin-bottom: 10px;
    background: #f5f7fa;
    padding: 5px 35px;
    border-radius: 20px;
}

.timeline-title {
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    color: #182034;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-description strong {
    color: #182034;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        float: right;
        width: calc(100% - 15px);
        margin-left: 0;
        padding: 25px;
        margin-bottom: 30px;
    }

    .timeline-icon {
        left: 20px;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        top: 20px;
    }

    .timeline-icon i {
        font-size: 0.9em;
    }

    .timeline-year {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .timeline-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .timeline-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 480px) {
    .academic-legacy-section {
        padding: 40px 0;
    }

    .academic-legacy-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 15px);
        margin-left: 0;
        padding: 20px;
        margin-bottom: 25px;
    }

    .timeline-icon {
        
        left: 24px;
        width: 35px;
        height: 35px;
        top: 20px;
    }

    .timeline-icon i {
        font-size: 0.9em;
    }
    
      .timeline-title {
    font-weight:600!important;;
    font-size: 1rem;
}

    .timeline-description {
        
        font-size: 0.9rem!important;
        line-height: 1.5;
    }
    
 
 
}






/* Community Comments Section Styles */
.community-comments-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #182034;
    margin-bottom: 20px;
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: #182034;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.comments-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Comment Form Styles */
.comment-form-wrapper {
    margin-bottom: 60px;
}

.comment-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #182034;
    margin-bottom: 30px;
    text-align: center;
}

.community-comment-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #182034;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.form-control:focus {
    border-color: #182034;
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 32, 52, 0.1);
}

.textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background: #ff6015 !important;
    color: #ffffff;
    border: none !important;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
     box-shadow: none!important;
}

.submit-button::before,
.submit-button::after {
  box-shadow: none !important;
}



.submit-button:hover {
    background: #232d4a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 32, 52, 0.2) !important;
}

.submit-button:active {
    transform: translateY(0);
}

/* Success and Error Messages */
.success-message,
.error-message {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Approved Comments Styles */
.approved-comments-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #182034;
    margin-bottom: 30px;
    text-align: center;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #182034;
    transition: all 0.3s ease;
}

.comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-author i {
    color: #182034;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: #182034;
    font-size: 1rem;
}

.comment-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.comment-date i {
    font-size: 0.8rem;
}

.comment-content {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

/* No Comments State */
.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-comments i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-comments p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .community-comments-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .comment-form-container,
    .approved-comments-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .submit-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .comment-form-container,
    .approved-comments-wrapper {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .submit-button {
        padding: 10px 25px;
        font-size: 13px;
    }
}







/* WRAPPER */
.ado-table-wrap {
    background: #FFFFFF;
    color: #0E0047;
}

/* TITLE */
.ado-table-title {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0E0047;
}

/* SCROLL WRAPPER */
.ado-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* TABLE BASE */
.ado-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 520px;
    background: #FFFFFF;

    /* CLEAN BORDER */
    border: 1px solid #3CB9E5;
    border-radius: 12px;
    overflow: hidden;
}

/* TABLE HEAD */
.ado-table thead th {
    text-align: left;
    font-weight: 700;
    padding: 14px 16px;

    background: #3CB9E5;
    color: #FFFFFF;

    border-bottom: 1px solid #3CB9E5;
    white-space: nowrap;
}

/* BODY CELLS */
.ado-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #F9FAFB;
    color: #0E0047;
}

/* ZEBRA ROW */
.ado-table tbody tr:nth-child(odd) td {
    background: #F9FAFB;
}

/* HOVER */
.ado-table tbody tr:hover td {
    background: #E6F7FF;
}

/* FOOTER */
.ado-table tfoot .ado-total th,
.ado-table tfoot .ado-total td {
    padding: 14px 16px;
    font-weight: 800;
    background: #F9FAFB;
    border-top: 1px solid #3CB9E5;
    color: #0E0047;
}

/* SCREENREADER HIDDEN CAPTION */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    border: 0;
}

/* MOBILE FIX */
@media (max-width: 480px) {
    .ado-table-title { font-size: 1.125rem; }
    .ado-table { min-width: 100%; }
}

