/*
 * ABOUT PAGE SPECIFIC STYLES
 * Contains: Education cards, Technical Skill badges, Experience Timeline, and Testimonials system for the About page.
 */
/* =========================================
   1. ABOUT OVERVIEW & EDUCATION
   ========================================= */
.about-section {
  background: var(--secondary-bg, #121212);
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.education-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.education-card {
  background: var(--card-bg, #1e1e1e);
  padding: 25px;
  border-radius: var(--border-radius, 16px);
  border-left: 4px solid var(--accent-color, #ff5757);
}

.education-date {
  color: var(--accent-color, #ff5757) !important;
  font-weight: 500;
}

/* ================ ABOUT SECTION ================ */
.about-section {
  background: var(--secondary-bg);
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.education-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.education-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.education-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.education-card p {
  margin-bottom: 5px;
  color: var(--text-secondary);
}

.education-date {
  color: var(--accent-color) !important;
  font-weight: 500;
}

/* ================ NEW TECHNICAL SKILLS CARDS ================ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  margin-top: 50px;
  /* Increased margin to avoid overlap with header */
  /* Increased margin to avoid overlap with header */
}

.skill-card {
  position: relative;
  height: 220px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.skill-card:hover {
  background: rgba(255, 87, 87, 0.05);
  /* Subtle tint on hover */
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(255, 87, 87, 0.15);
  transform: translateY(-10px);
}

.skill-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  position: relative;
  z-index: 2;
}

.skill-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.4;
}

.main-icon {
  font-size: 3rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.skill-card:hover .main-icon {
  transform: scale(1.1);
  color: var(--accent-color);
  filter: drop-shadow(0 0 10px rgba(255, 87, 87, 0.5));
}

.skill-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  text-align: center;
  transition: var(--transition-smooth);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.skill-card:hover .skill-title {
  transform: translateY(-5px);
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Floating Icons Container */
.floating-icons {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 10;
}

.skill-card:hover .floating-icons {
  opacity: 1;
  visibility: visible;
  top: -45px;
}

.f-icon {
  width: 45px;
  height: 45px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  /* More modern than 50% */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  animation: floatIcon 3s ease-in-out infinite;
  animation-delay: var(--delay);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: var(--transition-smooth);
}

/* Tooltip for small icons */
.f-icon::after {
  content: attr(data-name);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--accent-color);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(255, 87, 87, 0.3);
}

.f-icon:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.2) translateY(-5px) !important;
  z-index: 100;
}

.f-icon:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Responsive Adjustments */

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  /* Changed from max-width to force full width */
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
  object-fit: cover;
}

/* =========================================
   4. CV CTA SECTION
   ========================================= */
.cv-cta-section {
  background: linear-gradient(-45deg, #ff5757, #1a1f29, #0d1117);
  color: white;
  position: relative;
  overflow: hidden;
}

.cv-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  margin-bottom: 2rem;
  animation: floatBtn 3s infinite ease-in-out;
}

@keyframes floatBtn {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-color, #ff5757);
  font-weight: 700;
}

/* =========================================
   6. EXPERIENCE TRACK (Interactive Card List) in common css
   ========================================= */

/* ================ PROJECTS SECTION ================ */
.projects-section {
  background-color: var(--secondary-bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-img-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(3px);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-links {
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.project-card:hover .project-links {
  transform: translateY(0);
}

.project-overlay .btn {
  background-color: var(--accent-color) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 87, 87, 0.4);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.project-overlay .btn:hover {
  background-color: #ff3333 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 87, 87, 0.6);
}

.project-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.project-tag {
  background: rgba(255, 87, 87, 0.1);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 87, 87, 0.2);
}

.project-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.project-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   6. CERTIFICATIONS SECTION
   ========================================= */
.certification-section {
  background: var(--tertiary-bg, #1a1a1a);
  padding: 4rem 0;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  justify-items: center;
  max-width: 1000px;
  margin: 2rem auto;
}

.badge-item {
  transition: var(--transition-smooth);
  border-radius: 12px;
  background: white;
  padding: 10px;
}

.badge-item:hover {
  transform: translateY(-5px);
}

/* =========================================
   7. TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
  background: var(--tertiary-bg, #1a1a1a);
}

.testimonial-card {
  background: var(--card-bg, #1e1e1e);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
}

/* =========================================
   8. RESPONSIVE ADJUSTMENTS (ABOUT)
   ========================================= */

/* End of ABOUT PAGE SPECIFIC STYLES */
/* ================ REDESIGNED PREMIUM ABOUT SECTION ================ */
.profile-showcase {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  /* Allow badge to float out */
}

.profile-showcase img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.profile-showcase:hover img {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 87, 87, 0.3);
  padding: 15px 25px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-bio {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-bio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.bg-light-transparent {
  background: rgba(255, 255, 255, 0.03);
}

.edu-mini-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.edu-mini-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(255, 87, 87, 0.15);
}

.edu-mini-card .icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 87, 87, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Adjustments for the specific text styling requested */
.text-justify {
  text-align: justify;
}

/* ================ COMPACT SKILLS SIDEBAR (Small Cards) ================ */
.technical-arsenal-sidebar .skill-card {
  height: auto;
  min-height: 90px;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.technical-arsenal-sidebar .skill-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 87, 87, 0.05);
}

.technical-arsenal-sidebar .skill-card-content {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 25px;
  gap: 20px;
}

.technical-arsenal-sidebar .skill-number {
  position: static;
  font-size: 0.9rem;
  margin-right: -10px;
  opacity: 0.3;
}

.technical-arsenal-sidebar .main-icon {
  font-size: 2rem;
  margin-bottom: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
}

.technical-arsenal-sidebar .skill-title {
  text-align: left;
  font-size: 1.1rem;
  margin: 0;
}

/* Adjust floating icons to spawn from the center/right in compact mode */
.technical-arsenal-sidebar .floating-icons {
  left: 60%;
  top: -10px;
}

.technical-arsenal-sidebar .skill-card:hover .floating-icons {
  top: -50px;
}

/* ================ ULTRA-COMPACT SIDE-BY-SIDE SKILLS ================ */
.technical-arsenal-sidebar .skill-card {
  min-height: 60px !important;
  /* Smaller Height */
  padding: 0 !important;
}

.technical-arsenal-sidebar .skill-card-content {
  padding: 10px 15px !important;
  gap: 12px !important;
}

.technical-arsenal-sidebar .main-icon {
  width: 35px !important;
  height: 35px !important;
  font-size: 1.2rem !important;
  /* Smaller icon */
  padding: 6px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.technical-arsenal-sidebar .skill-title {
  font-size: 0.9rem !important;
  /* Smaller text */
  font-weight: 600 !important;
}

.technical-arsenal-sidebar .skill-number {
  font-size: 0.7rem !important;
  margin-right: -5px !important;
}

/* Adjust floating icons for smaller cards */
.technical-arsenal-sidebar .skill-card:hover .floating-icons {
  top: -40px !important;
}

.technical-arsenal-sidebar .f-icon {
  width: 30px !important;
  height: 30px !important;
  font-size: 0.8rem !important;
}

/* =========================================
   EDUCATION MODAL STYLES (NEW)
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  /* Darker backdrop */
  backdrop-filter: blur(15px);
  /* Stronger blur for focus */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content.glass-card-modal {
  background: linear-gradient(135deg, rgba(29, 29, 29, 0.95), rgba(15, 15, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Faint border */
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
  padding: 0;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  border-radius: 30px;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  /* Flex Layout for proper scrolling */
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(0, 0, 0, 0.3);
  /* Slightly darker for contrast */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  /* Ensure above header */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  padding: 0;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  color: #fff;
  background: var(--accent-color);
  transform: rotate(90deg);
  border-color: var(--accent-color);
}

/* ... (Keep existing intermediate styles) ... */

/* Modal Body - Scrollable Area */
.edu-modal-body {
  padding: 40px;
  background: #121212;
  flex: 1;
  /* Take remaining height */
  overflow-y: auto;
  /* Enable scroll */
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll on iOS */
}

/* Custom Scrollbar for Modal Body */
.edu-modal-body::-webkit-scrollbar {
  width: 6px;
}

.edu-modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* Modal Header */
.modal-header-content {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent);
  padding: 40px 40px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 87, 87, 0.1);
  /* Accent tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(255, 87, 87, 0.2);
}

.modal-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* Modal Body / Timeline */
.education-timeline-scroll {
  padding: 30px 40px 40px;
  overflow-y: auto;
  max-height: calc(85vh - 220px);
  /* Fill remaining space */
  /* Scrollbar Styling */
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.education-timeline-scroll::-webkit-scrollbar {
  width: 6px;
}

.education-timeline-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.education-timeline {
  position: relative;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-left: 10px;
  padding-left: 30px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

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

.timeline-dot {
  position: absolute;
  left: -39px;
  /* Adjust to align with line */
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--accent-color);
  border: 4px solid #1a1a1a;
  /* Match modal bg for cut-out effect */
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
}

.timeline-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-content h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}

.institution {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 15px;
}

.edu-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   PREMIUM DYNAMIC EDUCATION MODAL STYLES
   ========================================= */

/* =========================================
   PREMIUM DYNAMIC EDUCATION MODAL STYLES
   ========================================= */

.edu-modal-header-img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}

/* Specific Background Images managed by CSS classes */
.edu-bg-btech {
  background-image: url("../../Images/about-ed/monad-eu.png");
}

.edu-bg-diploma {
  background-image: url("../../Images/about-ed/monad-eu.png");
}

/* Hover Effect (Zoom) */
.active .edu-modal-header-img {
  animation: bgPan 20s infinite alternate linear;
}

@keyframes bgPan {
  0% {
    background-position: center;
    transform: scale(1);
  }

  100% {
    background-position: center;
    transform: scale(1.1);
  }
}

.edu-modal-header-img img {
  display: none;
}

/* Enhanced Gradient Overlay */
.edu-modal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(20, 20, 20, 0.3) 0%,
      rgba(20, 20, 20, 0.7) 60%,
      #121212 100%);
  z-index: 1;
}

.edu-header-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  /* Align mostly to bottom */
  height: 100%;
}

.edu-content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  /* Force Left Alignment */
  text-align: left;
  /* Force Left Text Alignment */
  /* Optional: Add a glass backdrop behind text if readability is poor */
  /* background: rgba(0,0,0,0.2);
     backdrop-filter: blur(10px);
     border-radius: 16px;
     padding: 20px; */
}

/* Badges & Dates */
.edu-badge-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  /* Spacing below badges */
}

.edu-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.start-badge i {
  color: #4facfe;
}

.end-badge i {
  color: var(--accent-color);
}

.edu-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Typography */
.edu-title-large {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1.5px;
  text-align: left;
  /* Explicit Left Alignment */
}

.edu-institution-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  width: fit-content;
  margin-top: 15px;
}

.edu-institution-wrapper i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Modal Body */
.edu-modal-body {
  padding: 40px;
  background: #121212;
}

.info-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
}

.section-label {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.gained-list li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 5px;
  display: flex;
  gap: 10px;
}
