
    /* Base styles */
    .internship-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 2.5rem;
      font-size: 2rem;
      font-weight: 600;
      color: #333;
    }
    
    /* Card grid layout */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 1.5rem;
    }
    
    /* Responsive breakpoints */
    @media (min-width: 576px) {
      .card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 992px) {
      .card-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    /* Card styles */
    .internship-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #fff;
    }
    
    .internship-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    .card-content {
      padding: 1.5rem;
      flex-grow: 1;
    }
    
    .card-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: #2c3e50;
    }
    
    .card-description {
      font-size: 0.95rem;
      color: #5a6a7a;
      margin-bottom: 1.25rem;
      line-height: 1.5;
    }
    
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem 0;
    }
    
    .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }
    
    .feature-icon {
      color: #2ecc71;
      margin-right: 0.5rem;
      font-size: 1rem;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }
    
    .card-footer {
      padding: 1rem 1.5rem;
      background-color: #fff;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Button styles */
    .apply-button {
      display: block;
      width: 100%;
      padding: 0.75rem;
      background: linear-gradient(135deg, #D1277F, #5B71B6);
      color: white;
      text-align: center;
      border-radius: 6px;
      border: none;
      font-weight: 500;
      text-decoration: none;
      transition: opacity 0.2s ease;
      cursor: pointer;
    }
    
    .apply-button:hover {
      opacity: 0.9;
    }
    
    /* Section spacing */
    .internship-section {
      padding: 5rem 0;
      background-color: #f8fafc;
    }


    .benefits-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 2rem;
      font-weight: 600;
      color: #333;
      position: relative;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    /* Benefits grid layout */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 2.5rem;
    }
    
    @media (min-width: 768px) {
      .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    /* Benefit item styles */
    .benefit-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1.5rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .benefit-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .benefit-icon {
      font-size: 3rem;
      margin-bottom: 1.25rem;
      height: 80px;
      width: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
      border-radius: 50%;
      color: #6366f1;
    }
    
    .benefit-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: #2c3e50;
    }
    
    .benefit-description {
      color: #5a6a7a;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    
    /* Section styling */
    .benefits-section {
      padding: 5rem 0;
      background-color: #f8fafc;
      position: relative;
      overflow: hidden;
    }
    
    .benefits-section:before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
      z-index: 0;
    }
    
    .benefits-section:after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
      z-index: 0;
    }


    .process-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 2rem;
      font-weight: 600;
      color: #333;
      position: relative;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    /* Timeline container */
    .timeline-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      padding: 20px 0;
    }
    
    /* Timeline vertical line */
    .timeline-container::before {
      content: '';
      position: absolute;
      height: 100%;
      width: 4px;
      background: linear-gradient(to bottom, #6366f1 0%, #8b5cf6 100%);
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    @media (max-width: 767px) {
      .timeline-container::before {
        left: 30px;
      }
    }
    
    /* Timeline items */
    .timeline-item {
      position: relative;
      margin-bottom: 50px;
      width: 100%;
      display: flex;
    }
    
    .timeline-item:last-child {
      margin-bottom: 0;
    }
    
    /* Timeline content styling */
    .timeline-content {
      position: relative;
      width: calc(50% - 40px);
      padding: 25px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .timeline-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    /* Alternate sides for timeline items */
    .timeline-item:nth-child(odd) {
      justify-content: flex-start;
    }
    
    .timeline-item:nth-child(even) {
      justify-content: flex-end;
    }
    
    /* Timeline dots */
    .timeline-item::before {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: white;
      border-radius: 50%;
      top: 25px;
      left: 50%;
      transform: translateX(-50%);
      border: 4px solid #6366f1;
      z-index: 1;
    }
    
    /* Timeline arrows */
    .timeline-item:nth-child(odd) .timeline-content::before {
      content: '';
      position: absolute;
      border-style: solid;
      border-width: 10px 0 10px 10px;
      border-color: transparent transparent transparent white;
      right: -10px;
      top: 25px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
      content: '';
      position: absolute;
      border-style: solid;
      border-width: 10px 10px 10px 0;
      border-color: transparent white transparent transparent;
      left: -10px;
      top: 25px;
    }
    
    /* Content styling */
    .step-number {
      display: inline-block;
      width: 30px;
      height: 30px;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      color: white;
      text-align: center;
      line-height: 30px;
      border-radius: 50%;
      margin-right: 10px;
      font-weight: bold;
    }
    
    .step-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
    }
    
    .step-description {
      color: #5a6a7a;
      line-height: 1.6;
      font-size: 0.95rem;
      margin: 0;
    }
    
    /* Mobile responsiveness */
    @media (max-width: 767px) {
      .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px;
      }
      
      .timeline-item:nth-child(odd),
      .timeline-item:nth-child(even) {
        justify-content: flex-start;
      }
      
      .timeline-item::before {
        left: 30px;
      }
      
      .timeline-item:nth-child(odd) .timeline-content::before,
      .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
      }
    }
    
    /* Section styling */
    .process-section {
      padding: 5rem 0;
      background-color: #ffffff;
    }


.job-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
}

.job-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  width: 90%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden; /* prevent horizontal overflow */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box; /* important! */
}


.job-popup::-webkit-scrollbar {
  width: 8px;
}

.job-popup::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* Show class */
.job-popup.show,
.popup-overlay.show {
  display: block;
}

/* Close button */
.job-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Logo above title */
.popup-logo {
  display: block;
  margin: 0 auto 15px;
  max-width: 120px;
}

.job-popup h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #1c1c1c;
}



.job-apply-button {
      /* display: block; */
      width: 100%;
      padding: 0.75rem;
      background: linear-gradient(135deg, #D1277F, #5B71B6);
      color: white;
      text-align: center;
      border-radius: 6px;
      border: none;
      font-weight: 500;
      text-decoration: none;
      transition: opacity 0.2s ease;
      cursor: pointer;
    }
    
    .job-apply-button:hover {
      opacity: 0.9;
    }