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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    /* Adjusted for floating navbar */
}

body {
  font-family: "Manrope", sans-serif;
  color: #eaeaea;
  line-height: 1.6;
  padding: 0 auto;
  position: relative;
  overflow-wrap: normal;
  overflow-x: hidden;

  /* ===> PROFESSIONAL TECH BACKGROUND <=== */
  background: 
    /* Matrix-like code rain effect */
    linear-gradient(90deg, transparent 119px, rgba(0, 255, 65, 0.03) 121px, transparent 122px),
    linear-gradient(180deg, transparent 119px, rgba(0, 255, 65, 0.03) 121px, transparent 122px),
    /* Tech grid pattern */
    linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px),
    /* Subtle circuit-like patterns */
    radial-gradient(circle at 25% 25%, rgba(0, 255, 65, 0.05) 1px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(0, 170, 255, 0.05) 1px, transparent 2px),
    /* Deep tech base */
    linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #000000 50%, #0a0a0a 75%, #000000 100%);
  
  background-size: 
    120px 120px,
    120px 120px,
    40px 40px,
    40px 40px,
    80px 80px,
    100px 100px,
    100% 100%;
  
  background-position: 
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    30px 30px,
    0 0;
  
  animation: techFlow 20s linear infinite, gridShift 30s ease-in-out infinite;
  user-select: none;
}

/* Tech flowing animation */
@keyframes techFlow {
  0% {
    background-position: 
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      30px 30px,
      0 0;
  }
  100% {
    background-position: 
      120px 120px,
      -120px 120px,
      40px 40px,
      -40px 40px,
      80px 80px,
      100px 100px,
      0 0;
  }
}

/* Grid shifting animation */
@keyframes gridShift {
  0%, 100% {
    background-size: 
      120px 120px,
      120px 120px,
      40px 40px,
      40px 40px,
      80px 80px,
      100px 100px,
      100% 100%;
  }
  50% {
    background-size: 
      150px 150px,
      150px 150px,
      50px 50px,
      50px 50px,
      100px 100px,
      120px 120px,
      100% 100%;
  }
}

/* Add tech particles effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 1px, transparent 2px),
    radial-gradient(circle at 40% 20%, rgba(0, 170, 255, 0.1) 1px, transparent 2px),
    radial-gradient(circle at 90% 90%, rgba(255, 0, 100, 0.1) 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(0, 255, 65, 0.1) 1px, transparent 2px);
  background-size: 200px 200px, 300px 300px, 250px 250px, 180px 180px;
  animation: particleFloat 25s linear infinite;
}

@keyframes particleFloat {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 100% 100%, -100% 100%, 100% -100%, -100% -100%;
  }
}

/* Tech scanner line effect */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 65, 0.03),
    rgba(0, 255, 65, 0.1),
    rgba(0, 255, 65, 0.03),
    transparent
  );
  /* animation: techScan 8s ease-in-out infinite; */
}

@keyframes techScan {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.header {
  text-align: center;
  margin: 40px 0 50px 0;
  color: white;
}

.header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #7877c6 50%, #78c6c5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header p {
  font-size: 1.3rem;
  opacity: 0.8;
  margin-bottom: 40px;
  color: #b0bec5;
}

.sub {
  max-width: 780px;
  margin: 25px auto 0;
  color: var(--secondary-text);
  color: #9a9494;
  text-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
  font-size: clamp(16px, 2.5vw, 30px);
  font-family: "Playpen Sans Arabic", ;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 0.02rem;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  
}

.heading {
    font-size: 3rem;
    margin-bottom: 1px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    font-family: "Lacquer", system-ui;
}

.heading::after {
    content: "";
    display: block;
    width: 200px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #000000, #fcfcfc, #000000);
    background-size: 200% auto;
    animation: shineLine 2.5s linear infinite;
}

.tab-button {
  background: rgba(5, 5, 5, 0.9);
  color: #00ff41;
  border: 1px solid rgba(0, 255, 65, 0.3);
  padding: 18px 35px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  font-family: "Delius",;
  box-shadow: inset 0 1px 0 rgba(0, 255, 65, 0.1), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.tab-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 65, 0.15),
    transparent
  );
  transition: left 0.6s;
}

.tab-button:hover:before {
  left: 100%;
}

.tab-button:hover {
  background: rgba(0, 20, 0, 0.9);
  border-color: rgba(0, 255, 65, 0.6);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(0, 255, 65, 0.2), 0 8px 25px rgba(0, 255, 65, 0.2), 0 4px 15px rgba(0, 0, 0, 0.9);
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

.tab-button.active {
  background: rgba(0, 40, 0, 0.95);
  color: #00ff41;
  border: 1px solid rgba(0, 255, 65, 0.8);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(0, 255, 65, 0.3), 0 0 20px rgba(0, 255, 65, 0.4), 0 8px 25px rgba(0, 0, 0, 0.9);
  text-shadow: 0 0 10px rgba(0, 255, 65, 1);
}

.tab-button i {
  margin-right: 10px;
}

.interns-grid {
  display: none;
  animation: fadeIn 0.6s ease-in;
}

.heads-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  justify-content: center;
}

/* Co-Heads section mirrors heads-section styling so co-head cards appear below main heads */
.coheads-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  justify-content: center;
}

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

.head-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 255, 65, 0.3);
  border-radius: 25px;
  padding: 20px 15px 1px 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.head-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 65, 0.08),
    transparent
  );
  transition: all 0.6s;
}

.head-card:hover::before {
  left: 100%;
}

.head-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 255, 65, 0.15), 0 10px 25px rgba(0, 0, 0, 0.7);
  background: rgba(10, 10, 10, 0.25);
  border-color: rgba(0, 255, 65, 0.5);
}

.head-photo {
  width: 250px;
  height: 300px;
  border-radius: 5%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #00ff41, #00aaff) padding-box,
    linear-gradient(135deg, #00ff41, #00aaff) border-box;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 65, 0.25);
}

.head-card:hover .head-photo {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 255, 65, 0.35);
}

.head-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.head-position {
  font-size: 1.3rem;
  margin-bottom: 1px;
    color: #f8e670;
    font-weight: 600;
    font-family: "Diphylleia", serif;
    letter-spacing: 2px;
}

.interns-grid.active {
  display: grid;
}

.intern-card {
  background: rgba(5, 5, 5, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 25px;
  padding: 20px 15px 1px 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.intern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 65, 0.05),
    transparent
  );
  transition: all 0.6s;
}

.intern-card:hover::before {
  left: 100%;
}

.intern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 65, 0.1), 0 8px 20px rgba(0, 0, 0, 0.6);
  background: rgba(10, 10, 10, 0.2);
  border-color: rgba(0, 255, 65, 0.4);
}

.intern-photo {
  width: 180px;
  height: 200px;
  border-radius: 10%;
  object-fit: cover;
  margin: 0 auto 10px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #00ff41, #00aaff) padding-box,
    linear-gradient(135deg, #00ff41, #00aaff) border-box;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(0, 255, 65, 0.2);
}

.intern-card:hover .intern-photo {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
}

.intern-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.intern-position {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #f8e670;
  font-weight: 600;
  font-family: "Diphylleia", serif;
  letter-spacing: 2px;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.intern-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.skill-tag {
  background: linear-gradient(
    135deg,
    rgba(120, 119, 198, 0.8),
    rgba(120, 198, 197, 0.8)
  );
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.skill-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.skill-tag:hover::before {
  left: 100%;
}

.back-button {
  position: fixed;
  top: 25px;
  left: 25px;
  background: rgba(0, 0, 0, 0.9);
  color: #00ff41;
  border: 1px solid rgba(0, 255, 65, 0.4);
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  z-index: 1000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  font-family: 'Courier New', monospace;
}

.back-button::before {
  content: '';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.back-button:hover {
  background: rgba(0, 20, 0, 0.95);
  border-color: rgba(0, 255, 65, 0.8);
  transform: translateX(-3px);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), 0 4px 20px rgba(0, 0, 0, 0.9);
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

.back-button:hover::before {
  transform: translateX(-3px);
}

/* JOIN US FOOTER SECTION */
.join-footer {
  margin-top: 50px;
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.join-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2300ff41" fill-opacity="0.05"><circle cx="20" cy="20" r="1"/></g></svg>');
  pointer-events: none;
}

.join-card {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 65, 0.3);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.join-content {
  position: relative;
  z-index: 2;
}

.join-icon {
  font-size: 4rem;
  background: linear-gradient(135deg, #00ff41, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  animation: bounce 2s ease-in-out infinite;
}

.join-title {
  font-size: 2.8rem;
    margin-bottom: 5px;
    text-align: center;
    color: #ffffff;
    
    font-family: "Ribeye", serif;
}

.join-subtitle {
  margin: 5px auto 0;
  color: #c2c0bb;
  
  font-size: 25px;
  font-family: "Playpen Sans Arabic";
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.02rem;
}

.join-description {
  font-size: 1.1rem;
  color: #90a4ae;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(145deg, #00ff41, #00aaff);
  color: rgb(0, 0, 0);
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Delius",;
  box-shadow: 0 5px 20px rgba(0, 255, 65, 0.3);
}

.join-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
  
}

.join-button:hover::before {
  left: 100%;
}

.join-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 64, 0.082), 0 0 20px rgba(0, 255, 65, 0.3);
}

.join-button i {
  font-size: 1.3rem;
  animation: pulse 2s ease-in-out infinite;
}

.join-features {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.join-feature {
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.join-feature i {
  font-size: 2.5rem;
  color: #00ff41;
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.join-feature h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 8px;
  font-weight: 600;
}

.join-feature p {
  font-size: 1rem;
  color: #90a4ae;
  line-height: 1.4;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

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

@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }
  .header{
    margin-top: 0;
    margin-bottom: 25px;
  }

  .category-tabs {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .tab-button {
    width: 90%;
    max-width: 300px;
    padding: 10px;
    margin-top: 0;
  }

  .heads-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .interns-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Mobile specific styling for intern cards */
  .intern-card {
    padding: 15px 10px 5px 10px;
    min-height: 280px;
  }

  .intern-photo {
    width: 120px;
    height: 140px;
  }

  .intern-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
    min-height: 2.8rem;
  }

  .intern-position {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .linkedin-link {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .skill-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
    margin: 2px;
  }

  .intern-skills {
    gap: 6px;
    margin-top: 10px;
  }

  .back-button {
    position: relative;
    top: auto;
    left: auto;
    margin: 15px auto 5px auto;
    display: flex;
    width: fit-content;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .container {
    padding: 10px;
  }

  .nav-links {
    display: none;
  }

  .join-card {
    padding: 40px 20px;
    margin: 0 0px;
    border-radius: 20px;
  }

  .join-title {
    font-size: 2.2rem;
  }

  .join-subtitle {
    font-size: 1.2rem;
  }

  .join-features {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .join-button {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
}

.no-interns {
  text-align: center;
  color: #b0bec5;
  font-size: 1.2rem;
  margin-top: 60px;
  margin-bottom: 80px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.linkedin-link {
  display: inline-block;
  margin-top: auto;
  margin-bottom: 15px;
  font-size: 2rem;
  color: #6387aa; /* LinkedIn blue */
  transition: transform 0.3s ease, color 0.3s ease;
}

.linkedin-link:hover {
  color: #004182;
  transform: scale(1.2);
}

.md-section {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.md-card {
    width: 450px;
    min-height: 50px;
    padding: 20px;
    position: relative;
    background: rgba(5, 5, 5, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.md-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.25), 0 10px 25px rgba(0, 0, 0, 0.7);
    background: rgba(10, 10, 10, 0.25);
    border-color: rgba(255, 215, 0, 0.6);
}

.md-card .head-photo {
    width: 250px;
    height: 300px;
    border-radius: 12px;
    margin: 0 auto 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffd700, #ffed4e) padding-box,
        linear-gradient(135deg, #ffd700, #ffed4e) border-box;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.md-card:hover .head-photo {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}







/* ---------- MOBILE TWEAKS ---------- */
@media (max-width: 768px) {
  .container { padding: 12px; }
  .heads-section, .interns-section { gap: 16px; }
  .tab-button { width: 95%; max-width: 340px; }
  
  .md-card {
    width: 100%;
    max-width: 350px;
    min-height: auto;
    padding: 15px;
  }
  
  .md-card .head-photo {
    width: 200px;
    height: 240px;
  }
}

/* Super small phones */
@media (max-width: 420px) {
  .head-card, .intern-card, .md-card { width: 100%; }
  .head-name, .intern-name { font-weight: 700; }
}
