/* ==========================
   ✅ Reset & Global Styles
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: linear-gradient(270deg, #0a1128, #0b1e3c, #001f3f);
  background-size: 600% 600%;
  animation: moveGradient 18s ease infinite;
  color: #ffffff;
}

@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
  
}

/* ==========================
   ✅ Utility Classes
========================== */
.text-center {
  text-align: center;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* ==========================
   ✅ Intro Section
========================== */
body.intro-bg {
  background-color: #0a1128;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text {
  color: white;
  font-size: 2.8rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1.8s ease-in-out forwards;
}

.hello-text {
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0;
  color: #0ff;
  animation: fadeInHello 1.8s ease-in-out forwards;
  animation-delay: 1.5s;
}

.sparkle {
  animation: glow 2s infinite alternate;
  animation-delay: 1s;
}

/* ==========================
   ✅ Animations
========================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInHello {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px #00f2ff, 0 0 20px #00f2ff;
  }
  100% {
    text-shadow: 0 0 30px #0ff, 0 0 50px #0ff;
  }
}

/* ==========================
   ✅ Header & Nav
========================== */
header {
  background-color: #0a1128;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
}
nav a {
  color: #0ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #ffffff;
}

/* ==========================
   ✅ Hero Section
========================== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  animation: glow 1.5s infinite alternate;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #0a1128;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
  width: 400px; /* Fixed 'PX' to 'px' */
  text-align: center;
}

.cta-button:hover {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  transform: scale(1.05);
  color: #fff;
}


/* ==========================
   ✅ About Section
========================== */
.about-container {
  /* existing styles */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem;
  margin: 40px auto;
  border: 4px solid transparent; /* Make base border transparent */
  border-radius: 16px;
  background: rgba(10, 25, 47, 0.8);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  max-width: 1000px;
  backdrop-filter: blur(8px);
  animation: border-glow 6s linear infinite;
  border-image-slice: 1; /* Required for border-image to work */
  border-width: 4px;
}


/* Desktop override */
@media (min-width: 769px) {
  .about-container {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }
}

.profile img {
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 0 18px #00f2ff;
  transition: transform 0.3s ease;
  margin: 10px;
}

.profile img:hover {
  transform: scale(1.05);
}

.bio h2 {
  font-size: 2rem;
  color: #64ffda;
  text-shadow: 0 0 6px #00f2ff;
  border-bottom: 2px solid #38bdf8;
  display: inline-block;
  margin-bottom: 12px;
}

.info p {
  margin-bottom: 8px;
  font-size: larger;
  color: #e0f2f1;
}

.info a {
  color: #00f2ff;
  font-weight: 600;
}

.know-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 18px;
  background-color: #00f2ff;
  color: #0a1128;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #00f2ff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.know-more-btn:hover {
  background-color: #00bfff;
  box-shadow: 0 0 20px #00f2ff;
}

/* ✅ Mobile-friendly layout */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .profile img {
    width: 150px;
    margin: 0 auto 1rem;
  }

  .bio h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
  }

  .bio p,
  .info p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .know-more-btn {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto 0;
  }
}
@keyframes border-glow {
  0% {
    border-image-source: linear-gradient(45deg, #00f2ff, #38bdf8, #64ffda);
  }
  50% {
    border-image-source: linear-gradient(45deg, #64ffda, #00f2ff, #38bdf8);
  }
  100% {
    border-image-source: linear-gradient(45deg, #00f2ff, #38bdf8, #64ffda);
  }
}

/* ==========================
   ✅ Projects Section
========================== */
#projects {

  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;

  

}
.project-card {
  display: grid;
  grid-template-columns: 80px auto;
  grid-template-rows: auto;
  align-items: center;
  text-align: left;
  padding: 20px;
  background-color: #112240;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 20px;
  width: 100%;
  max-width: 1200px;
}

.project-card.no-image .project-details {
  grid-column: span 2;
}


.project-card img {
  width: 60px; /* Fixed logo size */
  height: auto;
  margin-right: 10px;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 255, 255, 0.2);
}


.project-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.project-description {
  font-size: 1rem;
  color: #cbd5f2;
}

.project-links {
  margin-top: 10px;
  color: #00f2ff;
}

.project-links a {
  margin-right: 10px;
  color: #00f2ff;
}

.navigate-button {
  text-align: center;
  margin-top: 2rem;
}

.navigate-button button {
  background-color: #00ffff;
  color: #0a192f;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.navigate-button button:hover {
  background-color: #00bfbf;
}

@media (max-width: 768px) {
  .project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .project-card img {
    margin: 0 0 1rem 0;
    width: 80px;
  }

  .project-details {
    align-items: center;
  }

  .project-title {
    font-size: 1.3rem;
  }

  .project-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .project-links {
    margin-top: 1rem;
    color: #00b4d8;
  }
}

/* ==========================
   ✅ Skills Section
========================== */
.skills-wrapper {
  background: linear-gradient(135deg, #0a192f, #172a45);
  padding: 2rem;
  margin: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 255, 255, 0.1);
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 1rem;
}

.skill-badge {
  background-color: #112240;
  padding: 10px 18px;
  border-radius: 8px;
  color: #00f2ff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 255, 255, 0.15);
}

.skill-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 255, 255, 0.25);
  background-color: #1c3a5f;
}

/* ==========================
   ✅ Characteristics Section
========================== */
.characteristics-wrapper {
  background: linear-gradient(135deg, #0a192f, #172a45);
  padding: 2rem;
  margin: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 255, 255, 0.1);
}



.characteristics-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.characteristics-list li {
  background-color: #112240;
  color: #00f2ff;
  font-size: 1rem;
  font-weight: 500;
  margin: 10px 0;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.characteristics-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 255, 255, 0.25);
  background-color: #1c3a5f;
}

.icon {
  font-size: 1.2rem;
}

/* ==========================
   ✅ Technical Skills Section
========================== */
.skills-section {
  background: radial-gradient(circle at top left, #081b29, #0f3057);
  padding: 3rem 2rem;
  margin: 50px auto;
  border-radius: 16px;
  max-width: 960px;
  box-shadow: 0 12px 20px rgba(0, 255, 255, 0.08);
}

.skills-heading {
  text-align: center;
  color: #00d9ff;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-item {
  background-color: #102a43;
  color: #a2d2ff;
  padding: 18px 22px;
  margin-bottom: 18px;
  border-left: 4px solid #00d9ff;
  border-radius: 10px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.3s ease, transform 0.2s ease;
}

.skill-item:hover {
  background-color: #1c4169;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 217, 255, 0.2);
}

.skill-icon {
  font-size: 1.5rem;
  margin-top: 4px;
}

.skill-content {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.skills-section {
  background: linear-gradient(135deg, #0a192f, #172a45);
  color: #e6f1ff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.05);
  font-family: 'Poppins', sans-serif;
}

.skills-heading {
  text-align: center;
  font-size: 2.2rem;
  color: #00f2ff;
  margin-bottom: 2rem;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.skill-icon {
  font-size: 1.8rem;
}

.skill-content {
  font-size: 1rem;
  line-height: 1.6;
}



/* ==========================
   ✅ Achievements Section
========================== */

.achievements-slider {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #00f2ff #112240;
}

.achievements-slider::-webkit-scrollbar {
  height: 8px;
}

.achievements-slider::-webkit-scrollbar-thumb {
  background: #00f2ff;
  border-radius: 8px;
}

.slide {
  flex: 0 0 auto;
  background-color: #112240;
  color: #00f2ff;
  font-size: 1rem;
  font-weight: 500;
  margin: 10px 0;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  scroll-snap-align: start;
}

.slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 255, 255, 0.25);
  background-color: #1c3a5f;
}

#achievements h2 {
  font-size: 2.2rem;
  color: #a2e3e7;
  text-shadow: 0 0 10px #00f2ff;
  margin-bottom: 1rem;
}

.view-more-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(13, 117, 117, 0.15);
  border: 2px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.25);
  transition: all 0.4s ease;
  background-clip: padding-box;
  position: relative;
}

.view-more-button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50px;
  background: linear-gradient(45deg, #00f7ff, #7b2ff7, #ff007b);
  z-index: -1;
  filter: blur(8px);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.view-more-button:hover {
  background-color: #08083c;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.45), 0 0 15px rgba(123, 47, 247, 0.5);
}

.view-more-button:hover::before {
  opacity: 1;
}




/* ==========================
   ✅ Contact Section
========================== */

#contact {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #0a192f, #172a45);
  border-radius: 12px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 8px 16px rgba(0, 255, 255, 0.1);
  text-align: center;
}

.contact-heading {
  font-size: 2.2rem;
  color: #a2e3e7;
  text-shadow: 0 0 10px #00f2ff;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem; 
}


form input, form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #1c2a4a;
  color: white;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

form input::placeholder,
form textarea::placeholder {
  color: #aaa;
}

form button {
  background-color: #0ff;
  color: #0a1128;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

form button:hover {
  background-color: #00bfff;
  transform: translateY(-2px);
}

/* Social Links */
.social-links {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  color: #00f2ff;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid #00f2ff;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
  background-color: #00f2ff;
  color: #0a1128;
}
@media (max-width: 600px) {
  #contact {
    padding: 2rem 1rem;
  }

  form {
    padding: 0 0.5rem;
    width: 100%;
  }

  form input,
  form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .social-links a {
    flex: 1 1 100%;
    text-align: center;
  }
}

/* ==========================
   ✅ Footer
========================== */
.footer {
  background: #0a1128;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links li a {
  color: #90e0ef;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #00b4d8;
}

.footer-logo {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

/* ==========================
   ✅ Responsive
========================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .cta-button {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}


.intro-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 1rem;
  background: inherit; /* keeps gradient/animated bg */
}

.intro-title {
  font-size: 2.5rem;
  color: rgb(209, 241, 241);
  text-shadow: 0 0 10px #0ff;
  animation: glow 2s infinite alternate;
}

.intro-subtext {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ffffffcc;
  animation: fadeInHello 1.8s ease-in-out forwards;
  animation-delay: 0.8s;
}
.inline-logo {
  height: 50px;
  vertical-align: middle;
  margin-right: 10px;
}

/* ==========================
   ✅ Education Section
========================== */
/* Education Section Wrapper - reuse skills-wrapper base */
.education-wrapper {
  background: linear-gradient(135deg, #0a192f, #172a45);
  padding: 2rem;
  margin: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 255, 255, 0.1);
}

/* Title Styling */
.education-title {
  color: #00f2ff;
  text-align: center;
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Education Card Layout */
.education-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 1rem;
}

.education-card {
  background-color: #112240;
  padding: 20px 24px;
  border-radius: 10px;
  color: #ffffff;
  max-width: 350px;
  flex: 1 1 300px;
  box-shadow: 0 6px 12px rgba(0, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.25);
  background-color: #1a2f4d;
}

/* Text Styling */
.education-degree {
  color: #00f2ff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.education-institution {
  font-size: 16px;
  color: #c3e0f3;
  margin-bottom: 4px;
}

.education-duration {
  font-size: 14px;
  color: #a9bcd0;
  margin-bottom: 8px;
}

.education-description {
  font-size: 15px;
  color: #d0e9f7;
  line-height: 1.5;
}

/* ==========================
   ✅ Future Work Section
========================== */

.future-work-section {
  background: linear-gradient(135deg, #0a192f, #172a45);
  color: #e6f1ff;
  border-radius: 16px;
  padding: 2rem 1rem;
}

.carousel-card {
  background-color: #112240;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  box-shadow: 0 6px 12px rgba(0, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s ease;

   word-wrap: break-word;
  overflow-wrap: break-word; 
  hyphens: auto;                
  white-space: normal;  
}

.carousel-card:hover {
  transform: scale(1.02);
}

.carousel h5 {
  color: #00f2ff;
}

.carousel p {
  font-size: 1rem;
  margin-top: 0.5rem;

  overflow-wrap: break-word; 
  word-break: break-word;      
}
@media (max-width: 576px) {
  .carousel-card {
    padding: 1.2rem;
    font-size: 0.95rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .carousel h5 {
    font-size: 1.1rem;
  }

  .carousel p {
    font-size: 0.95rem;
  }
}

/* ==========================
   ✅ Achievement Section
========================== */

.achievements-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1128, #001f3f);
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #00eaff;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

.achievement-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 234, 255, 0.2);
  border-radius: 16px;
  margin: 30px auto;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.15);
  overflow: hidden;
  max-width: 1100px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(8px);
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(0, 234, 255, 0.25);
}

.achievement-text {
  flex: 1;
  padding: 32px;
}

.achievement-text h3 {
  font-size: 1.8rem;
  color: #00eaff;
  margin-bottom: 12px;
}

.achievement-text p {
  font-size: 1rem;
  color: #d6e8f5;
  line-height: 1.7;
}

.view-btn {
  display: inline-block;
  margin-top: 20px;
  background: transparent;
  color: #00eaff;
  border: 2px solid #00eaff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.view-btn:hover {
  background-color: #00eaff;
  color: #001f3f;
}

.achievement-img {
  flex: 1;
  background-color: #011627;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.achievement-Vid {
  flex: 1;
  background-color: #011627;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.achievement-img img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 12px;
  object-fit: contain;
  border: 2px solid #00eaff;
}
.achievement-Vid video {
  max-width: 100%;
  max-height: 600px;
  border-radius: 12px;
  object-fit: contain;
  border: 2px solid #00eaff;
}
@media (min-width: 768px) {
  .achievement-card {
    flex-direction: row;
  }

  .achievement-text,
  .achievement-img {
    width: 50%;
  }
}
.category-title {
  font-size: 1.8rem;
  color: #00eaff;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px solid #00eaff;
}


/* Tablet/Desktop view */
@media (min-width: 768px) {
  .achievement-card {
    flex-direction: row; /* normal side-by-side */
  }

  .achievement-text,
  .achievement-img {
    width: 50%;
  }
}
