@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap");

/* Updated to softer, more appealing purple color scheme and academic-friendly typography */
:root {
  --primary-purple: #6b5b9a;
  --secondary-purple: #a78bfa;
  --dark-purple: #4c1d95;
  --light-purple: #d9d9f3;
  --pale-lavender: #f3f4f6;
  --charcoal: #374151;
  --dark-gray: #4b5563;
  --light-gray: #f9fafb;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --text-muted: #6b7280;
  --gradient-primary: linear-gradient(135deg, #6b5b9a 0%, #a78bfa 100%);
  --gradient-secondary: linear-gradient(135deg, #4c1d95 0%, #6b5b9a 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Updated to DM Sans for better readability in academic context */
body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--charcoal);
  background-color: #fefefe; /* Updated body background to softer tone */
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Updated to Space Grotesk for modern, approachable academic headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
  font-weight: 400;
  line-height: 1.7;
}

/* Updated hero background to use softer gradient */
.hero_area {
  background: var(--gradient-secondary);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Only apply full height hero on homepage (not sub-pages) */
body:not(.sub_page) .hero_area {
  min-height: 100vh;
}

/* Sub-pages should have minimal hero area height */
body.sub_page .hero_area {
  min-height: auto;
}

/* Added subtle pattern overlay for visual interest */
.hero_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3Ccircle cx='50' cy='10' r='1'/%3E%3Ccircle cx='10' cy='50' r='1'/%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 0;
}

.hero_area > * {
  position: relative;
  z-index: 1;
}

/* Enhanced header with full-width background and better backdrop blur */
.header_section {
  padding: 15px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(107, 91, 154, 0.1);
  position: relative;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 20px rgba(107, 91, 154, 0.08);
}

.header_section .container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

.navbar {
  padding: 0;
  width: 100%;
}

.navbar-brand {
  margin-right: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Replaced atomic orbital logo with simple text logo */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #6b5b9a;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: -0.5px;
}

.logo-text:hover {
  color: #8b5cf6;
  text-decoration: none;
}

.logo {
  display: none; /* Hide the old logo image */
}

/* Updated navigation colors to use softer purple palette */
.custom_nav-container {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 12px 20px;
  color: var(--charcoal);
  text-align: center;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--primary-purple);
  background: rgba(107, 91, 154, 0.1);
  transform: translateY(-1px);
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
  background: var(--light-purple);
}

/* Fixed slider section layout */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
  color: var(--white);
}

.slider_section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.slider_section .box {
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.slider_section .detail-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.slider_section .detail-box h1 {
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider_section .detail-box h1 .line {
  display: block;
  margin-bottom: 0.5rem;
}

.slider_section .detail-box h1 .line-2 {
  background: linear-gradient(45deg, #ffffff, #d9d9f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider_section .detail-box p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Updated notice styling with softer colors */
.notice {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.25rem 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  animation: gentlePulse 3s infinite;
  text-align: center;
}

/* Softer pulse animation */
@keyframes gentlePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

/* Enhanced button styling with better hover effects */
.btn-box {
  display: inline-block;
  margin: 0.5rem;
}

.btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
  min-width: 140px;
  font-family: "Space Grotesk", sans-serif;
}

.btn1:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(135deg, #5a4d85 0%, #9570e8 100%);
}

/* Updated impact section with softer background */
#impact {
  padding: 80px 20px; /* Reduced from 120px */
  text-align: center;
  background: linear-gradient(135deg, #f8f7ff 0%, rgba(167, 139, 250, 0.15) 100%);
  position: relative;
}

#impact h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-purple);
  margin-bottom: 2.5rem; /* Reduced from 4rem */
  font-weight: 800;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced impact boxes with softer styling */
.impact-box {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.impact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 24px 24px 0 0;
}

.impact-box:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-purple);
}

.impact-box h1 {
  font-size: 4rem;
  margin: 0 0 1rem 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
}

.impact-box p {
  margin: 0;
  font-size: 1.25rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* Updated testimonials section background */
#testimonials {
  padding: 80px 20px; /* Reduced from 120px */
  background: linear-gradient(135deg, #f8f7ff 0%, rgba(167, 139, 250, 0.15) 100%);
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem; /* Reduced from 4rem */
}

.heading_container h2 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-weight: 800;
}

.heading_container p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
}

/* Enhanced testimonial cards */
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 24px 24px 0 0;
}

.testimonial-card p:first-child {
  color: var(--dark-gray);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card p:last-child {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0;
}

/* Enhanced navbar toggler with better hover effects */
.custom_nav-container .navbar-toggler {
  padding: 4px 8px;
  border: 2px solid var(--primary-purple);
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
}

.custom_nav-container .navbar-toggler:hover {
  background: rgba(107, 91, 154, 0.1);
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-purple);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Smooth scrolling and accessibility */
html {
  scroll-behavior: smooth;
}

*:focus {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Added proper page heading styles for sub-pages */
.page_heading {
  padding: 50px 0 30px 0; /* Reduced from 80px 0 60px 0 */
  background: linear-gradient(135deg, #f8f7ff 0%, rgba(167, 139, 250, 0.15) 100%);
  text-align: center;
}

.page_heading h1 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-weight: 800;
}

.page_heading p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Added timeline section styles */
.timeline_section {
  padding: 60px 0; /* Reduced from 80px */
  background: var(--white);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
  padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-right: calc(50% + 3rem);
}

.timeline-item:nth-child(even) {
  text-align: left;
  padding-left: calc(50% + 3rem);
}

.timeline-item .dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-purple);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--primary-purple);
}

.timeline-item:nth-child(odd) .dot {
  right: calc(50% - 10px);
}

.timeline-item:nth-child(even) .dot {
  left: calc(50% - 10px);
}

.timeline-item h5 {
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.timeline-item p {
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Added team section styles with proper image sizing */
.team_section {
  padding: 60px 0; /* Reduced from 80px */
  background: linear-gradient(135deg, #f8f7ff 0%, rgba(167, 139, 250, 0.15) 100%);
}

.team_container {
  margin-top: 2rem; /* Reduced from 3rem */
}

.team_section .box {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team_section .box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team_section .img-box {
  text-align: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

/* Fixed image sizing to preserve aspect ratio and prevent distortion */
.team_section .img-box .img1 {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--light-purple);
  transition: all 0.3s ease;
}

.team_section .box:hover .img-box .img1 {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

.team_section .detail-box {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team_section .detail-box h5 {
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.team_section .detail-box p {
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Added layout padding utility */
.layout_padding {
  padding: 60px 0; /* Reduced from 80px */
}

.heading_center {
  text-align: center;
  margin-bottom: 2rem; /* Reduced from 3rem */
}

.heading_center h2 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-weight: 800;
}

.heading_center h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading_center p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Improved responsive design for timeline and team sections */
@media (max-width: 768px) {
  .timeline::before {
    left: 2rem;
  }

  .timeline-item {
    padding-left: 4rem;
    padding-right: 1rem;
    text-align: left;
  }

  .timeline-item:nth-child(odd) {
    padding-right: 1rem;
    padding-left: 4rem;
    text-align: left;
  }

  .timeline-item .dot {
    left: 1rem !important;
    right: auto !important;
  }

  .page_heading {
    padding: 40px 0 20px 0; /* Reduced mobile padding */
  }

  .team_section .box {
    margin-bottom: 1.5rem;
  }

  .timeline_section,
  .team_section {
    padding: 40px 0; /* Reduced mobile padding */
  }

  #impact,
  #testimonials {
    padding: 60px 20px; /* Reduced mobile padding */
  }

  .logo-container {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    font-size: 20px;
  }

  .header_section .container-fluid {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (max-width: 992px) {
  .custom_nav-container .navbar-nav {
    gap: 0;
    margin-top: 1rem;
  }

  .custom_nav-container .navbar-nav .nav-item {
    width: 100%;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }
}

@media (max-width: 480px) {
  .impact-box {
    padding: 2rem 1.5rem;
  }

  .impact-box h1 {
    font-size: 3rem;
  }

  .slider_section .detail-box {
    padding: 0 1rem;
  }

  /* Added mobile footer padding reduction */
  .info_section {
    padding: 40px 0 20px 0;
  }

  .involvement-card,
  .reviewer-card {
    padding: 1.5rem;
  }

  .reviewer-img img {
    width: 100px;
    height: 100px;
  }
}

/* Added comprehensive footer styling with purple/black theme */
.footer_section {
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3Ccircle cx='50' cy='10' r='1'/%3E%3Ccircle cx='10' cy='50' r='1'/%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 0;
}

.footer_section > * {
  position: relative;
  z-index: 1;
}

.info_section {
  padding: 40px 0 20px 0; /* Reduced from 60px 0 30px 0 to make footer more compact */
}

.info_col {
  margin-bottom: 2rem;
}

.info_col h4 {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.info_col h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-purple);
  border-radius: 2px;
}

.contact_link_box a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact_link_box a:hover {
  color: var(--secondary-purple);
  transform: translateX(5px);
}

.contact_link_box a i {
  margin-right: 12px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.info_social {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.info_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info_social a:hover {
  background: var(--secondary-purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.3);
}

.info_links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info_links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.info_links a:hover {
  color: var(--secondary-purple);
  border-bottom-color: var(--secondary-purple);
  transform: translateX(5px);
}

.subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--secondary-purple);
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-purple);
}

.subscribe-btn:hover {
  background: transparent;
  color: var(--secondary-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.2);
}

.footer_section > .container > p {
  text-align: center;
  padding: 20px 0; /* Reduced from 30px 0 to decrease footer height */
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Added Get Involved page specific styles */
.get-involved-section {
  padding: 60px 0;
  background: var(--white);
}

.page-header {
  margin-bottom: 3rem;
}

.page-title {
  color: var(--primary-purple);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.involvement-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.involvement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 16px 16px 0 0;
}

.involvement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-purple);
}

.involvement-card h5 {
  margin-bottom: 1rem;
}

.involvement-card h5 a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.involvement-card h5 a:hover {
  color: var(--secondary-purple);
}

.involvement-card p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.peer-review-section {
  padding: 60px 0;
}

.section-title {
  color: var(--primary-purple);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.reviewer-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.reviewer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.reviewer-img {
  margin-bottom: 1.5rem;
}

.reviewer-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--light-purple);
  transition: all 0.3s ease;
}

.reviewer-card:hover .reviewer-img img {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

.reviewer-name {
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.reviewer-school {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 1rem;
}

.research-workshop-section {
  padding: 60px 0;
}

.section-content {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.workshop-video {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

/* Added responsive styles for Get Involved page */
@media (max-width: 768px) {
  .get-involved-section,
  .peer-review-section,
  .research-workshop-section {
    padding: 40px 0;
  }

  .involvement-card,
  .reviewer-card {
    margin-bottom: 1.5rem;
  }

  .workshop-video {
    max-width: 100%;
    border-radius: 12px;
  }

  .section-content {
    font-size: 1rem;
  }
}
