/* =============================================================================
   File: research-training-2025.css
   Description: Base stylesheet for Research Training 2025 - colors, typography,
                spacing, and foundational styles.
   Font: "Open Sans" - modern, readable sans-serif
============================================================================= */

/* -------------------------- Import Google Font --------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans,Inter:wght@300;400;600;700&display=swap');

/* ----------------------------- CSS Variables ----------------------------- */
:root {
  /* Brand Colors */
  --primary-orange: #D65600;      /* Main Title, Headings */
  --vibrant-orange: #FF9145;      /* Buttons, CTA Highlights */
  --header-bg: #F4A261;           /* Header Background */
  --button-bg: #E76F51;           /* Button Background */
  --deep-reddish: #8F3A00;        /* Highlights, Accents */

  /* Neutrals */
  --white: #FFFFFF;            /* Main Background */
  --light-cream: #FFF5EE;         /* Body Background */
  --light-cream-2: #F0F0F0;       /* Light Backgrounds */
  --light-gray: #D3D3D3;          /* Section Backgrounds */
  --medium-gray: #858585;         /* Secondary Text */
  --dark-gray: #3A3A3A;           /* Body Text */
  --dark-brown: #664732;          /* Nav/Footer */
  --text-black: #333333;          /* Main Text */
  --text-white: #FFFFFF;          /* Light on Dark */

  /* Font Sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-md: 1.125rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-xxl: 2rem;
  --font-xxxl: 2.5rem;

  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-semibold: 600;
  --font-bold: 700;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
}

/* --------------------------- CSS Reset & Base ---------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  /* font-family: 'Open Sans', sans-serif; */
  font-family: 'Inter', sans-serif;
  font-size: var(--font-base);
  font-weight: var(--font-regular);
  color: var(--text-black);
  /* background-color: var(--light-cream); */
  background-color: var(--white);
  line-height: 1.6;
}

/* ---------------------------- Typography ----------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-orange);
  font-weight: var(--font-bold);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-xxxl); /* 2.5rem */
}

h2 {
  font-size: var(--font-xxl);  /* 2rem */
}

h3 {
  font-size: var(--font-xl);   /* 1.5rem */
}

h4 {
  font-size: var(--font-lg);   /* 1.25rem */
  font-weight: var(--font-semibold);
}

h5 {
  font-size: var(--font-md);   /* 1.125rem */
  font-weight: var(--font-semibold);
}

h6 {
  font-size: var(--font-base); /* 1rem */
  font-weight: var(--font-semibold);
}

p {
  font-size: var(--font-base);
  margin-bottom: var(--spacing-sm);
  color: var(--dark-gray);
}

a {
  text-decoration: none;
  color: var(--primary-orange);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--deep-reddish);
}

/* ---------------------------- Buttons ----------------------------- */
button,
.button {
  font-family: inherit;
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  border-radius: var(--radius-md);
  background-color: var(--button-bg);
  color: var(--text-white);
  font-size: var(--font-sm);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover,
.button:hover {
  background-color: var(--deep-reddish);
}

/* ------------------------- Layout Helpers -------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-lg) 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--medium-gray);
}

/* --------------------------- Forms --------------------------- */
input,
textarea,
select {
  font-family: inherit;
  font-size: var(--font-base);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-gray);
  width: 100%;
  margin-bottom: var(--spacing-sm);
}

/* --------------------------- Media Queries --------------------------- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.375rem; }
  .container {
    padding: 0 var(--spacing-sm);
  }
}


/* ======================= Research Training 2025 - Header Section Starts ======================= */
.rt-header-section {
  background: linear-gradient(to right, var(--deep-reddish), var(--primary-orange));
  color: var(--text-white);
  padding: var(--spacing-xl) 0;
}

.rt-header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

/* ======================== Text Column ======================== */
.rt-header-text {
  flex: 1 1 500px;
  min-width: 280px;
}

.rt-organization {
  display: block;
  font-size: var(--font-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  color: var(--vibrant-orange);
  margin-bottom: var(--spacing-xs);
  letter-spacing: 1px;
}

.rt-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

/* ======================== Detail List ======================== */
.rt-details-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.rt-details-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-base);
  color: var(--text-white);
  gap: var(--spacing-sm);
}

.rt-details-list li {
  align-items: flex-start;
}

.rt-detail-text {
  flex: 1;
  word-break: break-word;
  line-height: 1.4;
}

.rt-details-list img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ======================== Divider ======================== */
.rt-divider {
  width: 30%;
  max-width: 200px;
  border: none;
  border-top: 3px solid var(--vibrant-orange);
  margin: var(--spacing-md) 0;
}

/* ======================== Description ======================== */
.rt-description {
  font-size: var(--font-base);
  line-height: 1.6;
  color: var(--text-white);
  text-align: justify;
  margin-top: var(--spacing-sm);
}

/* ======================== Call-to-Actions ======================== */
.rt-cta-buttons {
  margin-top: var(--spacing-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.rt-btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-sm);
  font-weight: var(--font-semibold);
  color: var(--text-white);
  background-color: transparent;
  border: 2px solid var(--text-white);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.rt-btn:hover {
  background-color: var(--text-white);
  color: var(--deep-reddish);
  transform: translateY(-2px);
}

.rt-btn::after {
  content: ' →';
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.rt-btn:hover::after {
  transform: translateX(4px);
}

/* Secondary Button Variant */
.rt-btn.secondary {
  border-color: var(--light-gray);
  color: var(--light-gray);
}

.rt-btn.secondary:hover {
  background-color: var(--light-gray);
  color: var(--deep-reddish);
}

/* ======================== Image Column ======================== */
.rt-header-image {
  flex: 1 1 400px;
  text-align: center;
}

.rt-header-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.rt-header-image img:hover {
  transform: scale(1.03);
  filter: brightness(1.2) saturate(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

/* ======================== Responsive ======================== */
@media (max-width: 992px) {

  .rt-title {
    font-size: 2.5rem;
    text-align: left;
  }
  .rt-header-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .rt-details-list {
    padding: 0;
  }

  .rt-details-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-base);
    color: var(--text-white);
    gap: var(--spacing-sm);
  }

  .rt-details-list li > * {
    text-align: left;
    margin-right: 10px;
  }

  .rt-btn {
    max-width: 200px;
    width: 100%;
    text-align: center;
  }

  .rt-cta-buttons {
    margin-top: var(--spacing-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }

  .rt-divider {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  .rt-header-image {
    flex: 1 1 200px;
    text-align: center;
  }

  .rt-header-image img {
    max-width: 70%;
    height: auto;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, filter 0.3s ease;
  }
}


@media (max-width: 480px) {
  .rt-title {
    font-size: 1.8rem;
  }

  .rt-header-text {
    padding: 0 1rem;
  }

  .rt-description {
    font-size: 0.95rem;
  }

  .rt-btn {
    font-size: 0.9rem;
  }

  .rt-details-list img {
    width: 20px;
    height: 20px;
  }
}
/* ======================== End Responsive ======================== */

/* ======================= Research Training 2025 - Header Section Ends ======================= */

/* ======================= Section: Research Training 2025 Overview & Video ======================= */

.rt2025-program-section {
  background-color: var(--white);
  padding: var(--spacing-lg) 0;
}

.rt2025-program-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: flex-start;
  justify-content: space-between;
}

/* -------------------- Program Overview -------------------- */
.rt2025-overview {
  flex: 1;
  min-width: 300px;
}

.rt2025-overview p {
  font-size: var(--font-base);
  color: var(--dark-gray);
  line-height: 1.7;
  text-align: justify;
}

/* -------------------- Video Embed Section -------------------- */
.rt2025-video {
  flex: 1;
  min-width: 300px;
}

.rt2025-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rt2025-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* -------------------- Section Headings -------------------- */
.section-heading {
  font-size: var(--font-xxl);
  font-weight: var(--font-bold);
  color: var(--primary-orange);
  margin-bottom: var(--spacing-md);
}

/* -------------------- Responsive Design -------------------- */

/* Tablet */
@media (max-width: 992px) {
  .rt2025-program-wrapper {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .rt2025-overview,
  .rt2025-video {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .rt2025-overview p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    text-align: justify;
  }

  .rt2025-video-embed {
    padding-bottom: 60%;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* ======================= Section: RT 2025 - Program Objectives ======================= */

.rt2025-objectives-section {
  background-color: var(--white);
  padding: var(--spacing-xl) 0;
}

.rt2025-objectives-header {
  text-align: left;
}


.rt2025-objectives-title {
  font-size: var(--font-xxl);
  font-weight: var(--font-bold);
  color: var(--primary-orange);
  margin-bottom: var(--spacing-sm);
}

.rt2025-objectives-description {
  font-size: var(--font-base);
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  text-align: justify;

}

.rt2025-objectives-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  padding: 0 var(--spacing-md);
}

.rt2025-objective-card {
  background-color: var(--text-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rt2025-objective-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.rt2025-objective-icon {
  width: 60px;
  height: auto;
  margin-bottom: var(--spacing-md);
}

.rt2025-objective-text {
  font-size: var(--font-base);
  color: var(--text-black);
  line-height: 1.6;
}

/* Responsive Typography Scaling */
@media (max-width: 768px) {
  .rt2025-objectives-title {
    font-size: 1.5rem;
  }

  .rt2025-objectives-description {
    font-size: 0.95rem;
    text-align: justify;

  }

  .rt2025-objective-text {
    font-size: 0.95rem;
  }

  .rt2025-objectives-cards {
    padding: 0 var(--spacing-sm);
  }

  .rt2025-objective-card {
    padding: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .rt2025-objective-icon {
    width: 50px;
  }
}

/* ======================= End: RT 2025 - Program Objectives ======================= */

/* ======================= Section: RT 2025 - Learning Journey ======================= */

/* Container Section */
.rt-lj-section {
  padding: var(--spacing-xl) var(--spacing-md);
  /* background: linear-gradient(135deg, #fffaf5 0%, #fff0e4 100%); */
}

.rt-lj-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.rt-lj-heading {
  /* font-family: 'Playfair Display', serif; */
  font-family: 'Inter', sans-serif;
  font-size: var(--font-xxl);
  text-align: center;
  color: var(--primary-orange);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.rt-lj-heading::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--vibrant-orange);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Row Layout */
.rt-lj-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

/* Arrow Styling */
.rt-lj-arrow {
  font-size: 2.2rem;
  color: var(--vibrant-orange);
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: subtle-shift 2s ease-in-out infinite;
}

/* Smooth and Minimal Movement Animation */
@keyframes subtle-shift {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(4px);
    opacity: 0.85;
  }
}



/* Milestone Card */
.rt-lj-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  position: relative;
  flex: 1 1 280px;
  max-width: 330px;
  transition: transform 0.3s ease;
}

.rt-lj-card:hover {
  transform: translateY(-5px);
}

/* Step Number Circle */
.rt-lj-step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fbd5a5 0%, #f8b267 100%);
  color: var(--dark-brown);
  font-weight: var(--font-bold);
  font-size: var(--font-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  margin: -3rem auto var(--spacing-md);
}

/* Card Content */
.rt-lj-card-content {
  padding: var(--spacing-sm);
}

.rt-lj-card-title {
  font-size: var(--font-lg);
  color: var(--primary-orange);
  margin-bottom: var(--spacing-sm);
  min-height: 3.5rem;
}

/* List Styles */
.rt-lj-list {
  list-style: none;
  padding-left: 1.5rem;
  color: var(--dark-brown);
  font-size: var(--font-sm);
  line-height: 1.6;
}

.rt-lj-list li {
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.rt-lj-list li::before {
  content: '▹';
  color: var(--vibrant-orange);
  position: absolute;
  left: -1.25rem;
}

/* CTA Download Button */
.rt-lj-download {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.rt-lj-download-btn {
  background: linear-gradient(135deg, var(--vibrant-orange), var(--button-bg));
  color: var(--text-white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 2rem;
  font-size: var(--font-base);
  font-weight: var(--font-semibold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.rt-lj-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(231, 111, 81, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .rt-lj-row {
    flex-direction: column;
    align-items: center;
  }

  .rt-lj-arrow {
    transform: rotate(90deg);
    margin: var(--spacing-sm) 0;
    display: none;
  }
}

@media (max-width: 950px) {
  .rt-lj-heading {
    font-size: var(--font-xxl);
  }

  .rt-lj-card-title {
    font-size: var(--font-md);
  }

  .rt-lj-list {
    font-size: var(--font-xs);
    padding-left: 1rem;
  }

  .rt-lj-list li::before {
    left: -1rem;
  }

  .rt-lj-step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: var(--font-sm);
  }
}



/* ======================= End: RT 2025 - Learning Journey ======================= */

/* <!-- ======================= Research Training 2025 - Trainers, Mentors and Organizer Section Starts ======================= --> */
         /* Shared Team Styles */
         .rt25-team-section {
          padding: 60px 20px;
          background-color: var(--light-cream-2);
      }

      .rt25-section-title {
          font-size: 2.5rem;
          color: var(--primary-orange);
          text-align: center;
          margin-bottom: 50px;
      }

      .rt25-team-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
          gap: 30px;
          max-width: 1200px;
          margin: 0 auto;
      }

      .rt25-member-card {
        /* background: var(--text-white); */
        /* border-radius: 15px; */
        padding: 0.5rem;
        padding-top: 1rem;
        /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent; /* Prevent layout shift on hover */
    }

    .rt25-member-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        border: 2px solid orange;
        border-radius: 15px;
    }


    .rt25-member-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
      margin: 0 auto 20px;
      display: block;
      border: 3px solid var(--light-gray);
  }


      .rt25-member-info {
          text-align: center;
      }

      .rt25-member-name {
          color: var(--primary-orange);
          font-size: 1.3rem;
          margin: 15px 0;
          font-weight: 700;
      }

      .rt25-member-role {
          color: var(--medium-gray);
          font-size: 1rem;
          margin-bottom: 6px;
          font-weight: 500;
      }

      .rt25-member-expertise {
          color: var(--text-black);
          font-size: 0.95rem;
          line-height: 1.4;
      }

   /* Modal Styles */
.rt25-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.rt25-modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 95%;
  max-width: 850px;
  position: relative;
  animation: modalSlideIn 0.4s ease-out;
  margin: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalSlideIn {
  from { transform: translateY(-80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.rt25-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--medium-gray);
  transition: color 0.2s ease;
}

.rt25-modal-close:hover {
  color: var(--primary-orange);
}

.rt25-modal-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 15px;
}

.rt25-modal-img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--light-gray);
  margin: 0 auto;
}

.rt25-modal-details {
  flex: 1;
  padding-top: 0;
}

.rt25-modal-name {
  color: var(--primary-orange);
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.rt25-modal-role {
  color: var(--medium-gray);
  font-size: 1rem;
  margin-bottom: 8px;
}

.rt25-modal-linkedin {
  color: var(--vibrant-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.rt25-modal-linkedin:hover {
  color: var(--primary-orange);
}

.rt25-modal-description {
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
}

/* Tablet Styles (600px and up) */
@media (min-width: 600px) {
  .rt25-modal-content {
      padding: 30px;
      border-radius: 14px;
      width: 90%;
  }

  .rt25-modal-close {
      top: 20px;
      right: 20px;
      font-size: 28px;
  }

  .rt25-modal-img {
      width: 180px;
      height: 180px;
  }

  .rt25-modal-name {
      font-size: 1.8rem;
  }

  .rt25-modal-role {
      font-size: 1.1rem;
  }

  .rt25-modal-description {
      font-size: 1rem;
  }
}

/* Small Desktop/Large Tablet (900px and up) */
@media (min-width: 900px) {
  .rt25-modal-main {
      flex-direction: row;
      text-align: left;
      gap: 30px;
  }

  .rt25-modal-img {
      width: 200px;
      height: 200px;
      margin: 0;
  }

  .rt25-modal-details {
      padding-top: 15px;
  }

  .rt25-modal-linkedin {
      justify-content: flex-start;
  }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .rt25-modal-content {
      padding: 40px;
      border-radius: 18px;
  }

  .rt25-modal-main {
      gap: 40px;
      margin-bottom: 25px;
  }

  .rt25-modal-img {
      width: 240px;
      height: 240px;
      border-radius: 12px;
      border: 3px solid var(--light-gray);
  }

  .rt25-modal-name {
      font-size: 2.2rem;
      margin-bottom: 15px;
  }

  .rt25-modal-role {
      font-size: 1.2rem;
      margin-bottom: 10px;
  }

  .rt25-modal-linkedin {
      gap: 8px;
      margin-top: 15px;
  }

  .rt25-modal-description {
      line-height: 1.7;
      margin-top: 25px;
      padding-top: 20px;
      border-top: 2px solid var(--light-gray);
  }

  .rt25-modal-close {
      top: 20px;
      right: 25px;
      font-size: 32px;
  }
}


/* Organizers Specific Styles */
.rt25-organizer-card {
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.rt25-organizer-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid orange;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto 20px;
  display: block;
}

.rt25-organizer-name {
  color: var(--primary-orange);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.rt25-organizer-role {
  color: var(--medium-gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .rt25-organizer-img {
    width: 120px;
    height: 120px;
  }

  .rt25-organizer-name {
    font-size: 1.1rem;
  }
}


/* <!-- ======================= Research Training 2025 - Trainers, Mentors and Organizer Section Ends ======================= --> */


/* ========================= Research Training 2025 - FAQs Section Styles ========================= */

.rt2025-faq-section {
  /* background-color: var(--light-cream); */
  background-color: var(--white);
  text-align: center;
  padding: var(--spacing-lg) 0;
}

.rt2025-faq-section .section-title {
  font-size: var(--font-xxl);
  font-weight: var(--font-bold);
  color: var(--primary-orange);
  margin-bottom: var(--spacing-md);
}

.rt2025-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* FAQ Accordion Items */
.rt2025-faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  /* border: 1px solid var(--light-gray); */
  background-color: var(--text-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.rt2025-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rt2025-faq-question {
  font-size: var(--font-md);
  font-weight: var(--font-semibold);
  color: var(--deep-reddish);
  padding: var(--spacing-md);
  /* background-color: var(--light-cream); */
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.rt2025-faq-question::after {
  content: '+';
  font-size: var(--font-lg);
  line-height: 1;
  margin-left: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.rt2025-faq-item[open] .rt2025-faq-question::after {
  content: '−';
}

.rt2025-faq-answer {
  font-size: var(--font-base);
  color: var(--dark-gray);
  /* background-color: var(--light-cream); */
  background-color: var(--white);
  padding: var(--spacing-md);
  text-align: left;
  border-top: 1px solid var(--light-gray);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .rt2025-faq-section .section-title {
    font-size: var(--font-xl);
  }

  .rt2025-faq-question {
    font-size: var(--font-base);
  }

  .rt2025-faq-answer {
    font-size: var(--font-sm);
  }
}
/* ========================= End Research Training 2025 - FAQs Section Styles ========================= */
/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background-color: var(--white);
  text-align: center;
}

.testimonials-section h2 {
  color: var(--primary-orange);
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background-color: #ffffff;
  width: 45%;
  min-width: 300px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--white);
}

.card-header img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--vibrant-orange);
}

.user-info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.user-info .date {
  font-size: 14px;
  color: var(--medium-gray);
  margin-top: 5px;
}

.testimonial-text {
  text-align: justify;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}


/* ======= RT-25 Footer Styles ======= */

#rt-25-footer {
  background-color: var(--light-cream-2);
  color: var(--text-white);
  padding: 40px 0;
  font-size: 14px;
}

.rt-25-footer-top .rt-25-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.rt-25-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.rt-25-footer-column {
  flex: 1 1 280px;
  min-width: 240px;
}

.rt-25-footer-logo {
  height: 64px;
  margin-bottom: 20px;
}

.rt-25-footer-column h4 {
  font-size: 24px;
  font-weight: 900;
  color: var(--vibrant-orange);
  margin-bottom: 12px;
}

.rt-25-footer-column p {
  margin-bottom: 10px;
  color: var(--text-black);
}

.rt-25-footer-column p a {
  color: var(--text-black);
  text-decoration: none;
}

.rt-25-footer-column ul {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.rt-25-footer-column ul li {
  margin-bottom: 6px;
}

.rt-25-footer-column ul li a {
  color: var(--text-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.rt-25-footer-column ul li a:hover {
  color: var(--vibrant-orange);
}

.rt-25-social-links {
  margin-top: 10px;
}

.rt-25-social-links a {
  font-size: 18px;
  color: var(--text-black);
  margin-right: 12px;
  transition: color 0.3s ease;
}

.rt-25-social-links a:hover {
  color: var(--vibrant-orange);
}

#rt-25-newsletter-form {
  margin-top: 12px;
}

#rt-25-newsletter-form input[type="email"],
#rt-25-newsletter-form input[type="text"] {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}

#rt-25-newsletter-form input[type="submit"] {
  background-color: var(--vibrant-orange);
  color: var(--text-white);
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

#rt-25-newsletter-form input[type="submit"]:hover {
  background-color: var(--button-bg);
}

.rt-25-alert-success {
  margin-top: 10px;
  background-color: #d4edda;
  color: #155724;
  padding: 8px;
  border-radius: 4px;
  font-size: 14px;
}


  /* Responsive Design */
  @media (max-width: 1024px) {
    .objectives-cards .card,
    .testimonial-card {
      width: 45%;
    }
  }

  @media (max-width: 768px) {
    .navigation ul {
      flex-direction: column;
      align-items: center;
    }
    .navigation li {
      margin: 10px 0;
    }
    .details-list li {
      margin: 10px 0;
    }
    .overview-video-section .container {
      flex-direction: column;
    }
    .objectives-cards .card,
    .testimonial-card {
      width: 100%;
    }
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .header-section h1 {
      font-size: 32px;
    }
    .program-overview h2, .video-section h2,
    .objectives-section h2, .syllabus-section h2,
    .trainers-section h2, .organizing-team-section h2,
    .faqs-section h2, .testimonials-section h2 {
      font-size: 24px;
    }
    .milestone {
      width: 150px;
      height: 150px;
      font-size: 12px;
    }
  }