.content {
  margin-top: 1rem;
  margin-bottom: 4rem;
}

.introduce .content h1 {
  font-size: 3.5rem;
  font-weight: lighter;
}

.introduce .content h1:nth-of-type(2) {
  font-size: 2rem;
  font-weight: normal;
  color: #b3b3b3;
  margin-top: 1rem;
}

.introduce .content h1 span {
  color: #28e98c;
}

.introduce .content p {
  margin-top: 2rem;
  font-size: 1rem;
  text-align: justify;
}

.about .content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  padding: 0 !important;
}

.about .content .container h4 {
  color: #28e98c;
}

.about .content .container p {
  font-size: 1.2rem;
  text-align: justify;
}

.about .container .leftSide div {
  margin-bottom: 1rem;
  background-color: rgba(62, 62, 62, 0.302);
  padding: 1rem;
  border-radius: 10px;
}
.about .container .rightSide div {
  margin-bottom: 1rem;
  background-color: rgba(62, 62, 62, 0.302);
  padding: 1rem;
  border-radius: 10px;
}

.about a {
  text-decoration: none;
  color: #ffffff;
  border: 1px solid gray;
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 30px;
}
.about a:hover {
  color: #28e98c;

  background-color: rgba(62, 62, 62, 0.302);
}

.content .eduCard {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.1s;
}

.content .eduCard h5 {
  color: gray;
  font-size: 1rem;
}
.content .eduCard h4 {
  font-size: 1rem;
}

.content .eduCard h1 {
  font-size: 1.7rem;
}

.content .eduCard:hover h5 {
  color: #28e98c;
}

.content .eduCard .education-details {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(62, 62, 62, 0.2);
  border-radius: 8px;
}

.content .eduCard .education-details h6 {
  color: #28e98c;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.content .eduCard .education-details h6:first-child {
  margin-top: 0;
}

.content .eduCard .education-details p {
  margin-bottom: 1rem;
  text-align: justify;
  line-height: 1.5;
  color: #ffffff;
}

.content .eduCard .education-details p strong {
  color: #28e98c;
  font-weight: bold;
}

.content .experienceCard {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.1s;
  background-color: rgba(62, 62, 62, 0.302);
  padding: 1.5rem;
  border-radius: 10px;
}

.content .experienceCard h5 {
  color: gray;
  font-size: 1rem;
}
.content .experienceCard h4 {
  font-size: 1rem;
}
.content .experienceCard h6 {
  color: #28e98c;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.content .experienceCard h1 {
  font-size: 1.7rem;
  color: #28e98c;
}

.content .experienceCard p {
  margin-bottom: 0.5rem;
  text-align: justify;
}

.content .experienceCard:hover h5 {
  color: #28e98c;
}

.content .experienceCard .experience-details-card {
  background-color: rgba(62, 62, 62, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  border-left: 3px solid #28e98c;
}

.content .experienceCard .experience-details-card p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.content .experienceCard .experience-details-card p:last-child {
  margin-bottom: 0;
}

.skillsContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center;
  gap: 1rem;
}

/* Styles for the new text-based skills summary */
.skills-summary {
  background-color: rgba(62, 62, 62, 0.302);
  padding: 1.25rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.skills-summary h2 {
  color: #28e98c;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  font-size: 1.25rem;
}
.skills-summary p {
  color: #ffffff;
  margin: 0.35rem 0;
  line-height: 1.5;
}

/* New structured skills layout */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr; /* single column layout */
  gap: 0.75rem 0.75rem;
  margin-top: 0.75rem;
}
.skill-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(30, 30, 30, 0.55);
  border: 1px solid rgba(128,128,128,0.12);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.skill-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.6);
}
.skill-label {
  color: #28e98c;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skill-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(128, 128, 128, 0.18);
  color: #ffffff;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: all 0.15s ease-in-out;
}
.skill-badge:hover {
  background: rgba(40, 233, 140, 0.12);
  border-color: rgba(40, 233, 140, 0.25);
  color: #28e98c;
  transform: translateY(-2px);
}

/* Already single-column for all sizes; responsive rule removed */


.skillSet {
  text-align: center;
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.skillSet p {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}
.skillSetInner {
  padding: 1rem;
  display: grid;
  place-items: center;
  border: 2px solid gray;
  border-radius: 100px;
  height: 180px;
  width: 140px;
  transition: all 0.1s;
}

.skillSetInner img {
  width: 55%;
}
.skillSetInner h1 {
  font-size: 1.6rem;
  color: #28e98c;
}

.skillSet:hover .skillSetInner {
  border: 2px solid #28e98c;
}

.skillSetInner.text-skill i {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.skillSetInner.text-skill i.fa-brands.fa-js {
  color: #f7df1e;
}

.skillSetInner.text-skill i.fa-brands.fa-react {
  color: #61dafb;
}

.skillSetInner.text-skill i.fa-brands.fa-angular {
  color: #dd0031;
}

.skillSetInner.text-skill i.fa-solid.fa-code {
  color: #28e98c;
}

.skillSetInner.text-skill i.fa-brands.fa-microsoft {
  color: #512bd4;
}

.skillSetInner.text-skill i.fa-solid.fa-flask {
  color: #000000;
}

.achievementCard {
  background-color: rgba(62, 62, 62, 0.302);
  border-radius: 10px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  margin-bottom: 1rem;
}

.achievementCard img {
  width: 90%;
  height: 220px;
  object-fit: contain;
  background-color: rgba(62, 62, 62, 0.302);
  border-radius: 5px;
  padding: 0.5rem;
}

.achievementCard h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28e98c;
}

.achievementCard p {
  text-align: justify;
}

.clubCard {
  border: 1px solid rgba(128, 128, 128, 0.515);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.2s;
  display: grid;
  grid-template-columns: 10fr 1fr;
  transition: all 0.2s;
  margin-bottom: 1rem;
}
.clubCard:hover {
  border: 1px solid #28e98c;
}

.clubCard h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.clubCard .clubCardRight {
  color: #28e98c;
  font-size: 2rem;
}

/* Simple badge-style Like button (matches skill badges) */
.clubCardActions {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
}
.skill-like {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(128, 128, 128, 0.12);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.skill-like:hover {
  transform: translateY(-2px);
  background: rgba(40, 233, 140, 0.06);
  color: #28e98c;
}
.skill-like[aria-pressed="true"] {
  background: rgba(40, 233, 140, 0.12);
  color: #28e98c;
  border-color: rgba(40, 233, 140, 0.25);
}

/* Simple Codeforces / CodeChef link buttons */
.cp-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.cp-link-btn {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(128,128,128,0.12);
  transition: background 0.12s ease, color 0.12s ease, transform 0.12s ease;
}
.cp-link-btn:hover,
.cp-link-btn:focus {
  background: rgba(40,233,140,0.06);
  color: #28e98c;
  transform: translateY(-2px);
}

/* Compact club card list */
.clubCard.compact {
  padding: 1rem;
}
.clubCard.compact .clubCardLeft h3 {
  margin: 0 0 0.5rem 0;
}
.clubCard.compact .club-list {
  margin: 0;
  padding-left: 1rem;
  list-style: disc;
  display: block;
}
.clubCard.compact .club-list li {
  margin: 0.35rem 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

/* Two-line club item styles */
.club-list .club-role {
  color: #28e98c; /* strong accent */
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.club-list .club-desc {
  color: #dcdcdc;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}
.clubCard.compact .club-list li + li {
  border-top: 1px solid rgba(128,128,128,0.08);
  padding-top: 0.5rem;
  margin-top: 0.4rem;
}

.contactt input,
textarea {
  border: 1px solid rgba(128, 128, 128, 0.515);

  border-radius: 10px;
  padding: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
  background-color: rgba(62, 62, 62, 0.302);
  color: #ffffff;
}
.contactt button {
  border: 1px solid rgba(128, 128, 128, 0.515);
  width: 100%;
  /* background-color: rgba(62, 62, 62, 0.302); */
  background-color: inherit;

  border-radius: 30px;
  padding: 0.5em;
  color: #ffffff;
}

.contactt button:hover {
  background-color: rgba(62, 62, 62, 0.302);
  color: #28e98c;
}

/* Education link: look like normal text until hovered or focused */
#education .eduCard h4 a {
  color: inherit;
  text-decoration: none;
  cursor: default;
  transition: color 0.12s ease, text-decoration-color 0.12s ease;
}
#education .eduCard h4:hover a,
#education .eduCard h4 a:focus {
  color: #28e98c;
  text-decoration: underline;
  cursor: pointer;
}

/* Club description links: appear like normal text until hovered/focused */
.clubCard .club-desc a {
  color: inherit;
  text-decoration: none;
  cursor: default;
  transition: color 0.12s ease, text-decoration-color 0.12s ease;
}
.clubCard .club-desc a:hover,
.clubCard .club-desc a:focus {
  color: #28e98c;
  text-decoration: underline;
  cursor: pointer;
}


@media screen and (max-width: 1600px) {
  .skillsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
  }
}
@media screen and (max-width: 1300px) {
  .skillsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .skillsContainer {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }
}

@media screen and (max-width: 769px) {
  .introduce .content h1 {
    font-size: 2.5rem;
  }

  .introduce .content p {
    margin-top: 2rem;
    font-size: 1rem;
    text-align: justify;
  }
  .about .content .container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .content .eduCard h5 {
    color: gray;
    font-size: 1rem;
  }
  .content .eduCard h4 {
    font-size: 1rem;
  }

  .content .eduCard h1 {
    font-size: 1.7rem;
  }
  
  .content .experienceCard h5 {
    color: gray;
    font-size: 1rem;
  }
  .content .experienceCard h4 {
    font-size: 1rem;
  }
  .content .experienceCard h1 {
    font-size: 1.7rem;
  }
  .content .experienceCard h6 {
    font-size: 0.85rem;
  }
  
  .skillsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }

  .skillSetInner {
    height: 200px;
    width: 130px;
  }

  .achievementCard {
    background-color: rgba(62, 62, 62, 0.302);
    border-radius: 10px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
  }

  .achievementCard img {
    width: 100%;
    height: 220px;
    object-fit: content;
    background-color: rgba(62, 62, 62, 0.302);
    border-radius: 10px;
    margin-bottom: 0.5rem;
  }
}

/* Blog CTA Section */
.blog-cta {
  margin: 4rem 0;
  padding: 3rem 0;
}

.blog-cta-content {
  background: linear-gradient(135deg, rgba(40, 233, 140, 0.1) 0%, rgba(40, 233, 140, 0.05) 100%);
  border: 2px solid rgba(40, 233, 140, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.blog-cta-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(40, 233, 140, 0.2);
  border-color: rgba(40, 233, 140, 0.5);
}

.blog-cta-content h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-cta-content p {
  color: #b3b3b3;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #28e98c;
  color: #000000;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 233, 140, 0.3);
}

.blog-cta-button:hover {
  background: #20c77a;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(40, 233, 140, 0.5);
}

.blog-cta-button i {
  font-size: 1.2rem;
}

/* Responsive Design for Blog CTA */
@media screen and (max-width: 768px) {
  .blog-cta {
    margin: 2rem 0;
    padding: 2rem 0;
  }

  .blog-cta-content {
    padding: 2rem 1.5rem;
  }

  .blog-cta-content h2 {
    font-size: 2rem;
  }

  .blog-cta-content p {
    font-size: 1rem;
  }

  .blog-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .blog-cta-content h2 {
    font-size: 1.75rem;
  }

  .blog-cta-content p {
    font-size: 0.95rem;
  }
}

/* Hidden Projects - Show only first 6 projects */
.hidden-project {
  display: none !important;
}

/* See More Projects Button */
.see-more-container {
  text-align: center;
  margin: 3rem 0 2rem 0;
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #28e98c;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #28e98c;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 233, 140, 0.2);
}

.see-more-btn:hover {
  background: #28e98c;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(40, 233, 140, 0.5);
}

.see-more-btn i {
  font-size: 1.2rem;
}

/* Responsive Design for See More Button */
@media screen and (max-width: 768px) {
  .see-more-container {
    margin: 2rem 0 1.5rem 0;
  }

  .see-more-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .see-more-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }
}
