@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Calistoga&family=Chivo:ital,wght@0,100..900;1,100..900&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Edu+AU+VIC+WA+NT+Arrows:wght@400..700&family=Lexend+Exa:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=MuseoModerno:ital,wght@0,100..900;1,100..900&family=Nabla&family=Nosifer&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playball&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&family=Tektur:wght@400..900&display=swap");
hr {
  color: #000;
  width: 100%;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
body {
  background-color: rgba(108, 117, 125, 0.1);
  z-index: -1;
}

.header {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(176, 176, 176, 0.4),
    transparent
  );
  transition: 0.5s;
}
.head_container:hover::before {
  left: 100%;
}
.head_container {
  width: 60%;
  position: fixed;
  overflow: hidden;
  top: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  align-items: center;
  gap: 2rem;
  padding: 0.65rem 2rem;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.nav-container {
  position: relative;
  padding: 0.25rem;
}

.nav-container::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -1;
  filter: blur(0.1rem);
  transition: all 0.5s ease-in-out;
}

.logo {
  color: orange;
  font-size: 1.75rem;
  text-decoration: none;
}
.navbar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.nav-links {
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
}

/* Nav Over                                        */

/* MAIN Start                                      */

/* Container Styles */
.home-section {
  min-height: 100vh;
  min-width: 100vw;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-custom {
  width: 50%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Text Styles */
.intro-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #151515;
}

.main-heading {
  font-size: 2.75rem; /* text-4xl */
  font-weight: bold;
}

/* Description */
.description {
  font-size: 1.125rem;
  color: #6b7280;
}

/* Button Styles */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: #3b82f6; /* Tailwind's blue-500 */
  color: white;
}

.btn-primary:hover {
  background-color: #2563eb; /* blue-600 */
}

.btn-outline {
  border: 2px solid #3b82f6;
  color: #3b82f6;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #3b82f6;
  color: white;
}

/* bubbles */
.bubble {
  position: absolute;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  box-shadow: inset 0 0 1.5rem rgba (255, 255, 255, 0.25);
  animation: animate_4010 8s ease-in-out infinite;
}

.bubble:nth-child(2) {
  position: relative;
  zoom: 0.45;
  left: -10px;
  top: -100px;
  animation-delay: -4s;
}

.bubble:nth-child(3) {
  position: relative;
  zoom: 0.45;
  right: -80px;
  top: -300px;
  animation-delay: -6s;
}

.bubble:nth-child(4) {
  position: relative;
  zoom: 0.35;
  left: -120px;
  bottom: -200px;
  animation-delay: -3s;
}

.bubble:nth-child(5) {
  position: relative;
  zoom: 0.5;
  left: 0px;
  top: 200px;
  animation-delay: -5s;
}

@keyframes animate_4010 {
  0%,
  100% {
    transform: translateY(-1.25rem);
  }

  50% {
    transform: translateY(1.25rem);
  }
}

.bubble::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 45px;
  width: 1.88rem;
  height: 1.88rem;
  border-radius: 50%;
  background: #fff;
  /* z-index: 1; */
  filter: blur(5px);
}

.bubble::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 80px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  /* z-index: 1; */
  filter: blur(5px);
}

.bubble span {
  position: absolute;
  border-radius: 50%;
}

.bubble span:nth-child(1) {
  inset: 10px;
  border-left: 15px solid #0fb4ff;
  filter: blur(8px);
}

.bubble span:nth-child(2) {
  inset: 10px;
  border-right: 15px solid #ff4484;
  filter: blur(8px);
}

.bubble span:nth-child(3) {
  inset: 10px;
  border-top: 15px solid #ffeb3b;
  filter: blur(8px);
}

.bubble span:nth-child(4) {
  inset: 30px;
  border-left: 15px solid #ff4484;
  filter: blur(12px);
}

.bubble span:nth-child(5) {
  inset: 10px;
  border-bottom: 10px solid #fff;
  filter: blur(8px);
  transform: rotate(330deg);
}

.hero_card {
  width: 100%;
  --bg-color: #212121;
  background-color: var(--bg-color);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.loader {
  color: #d0d0d0;
  font-size: 1.65rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 2.5rem;
  padding: 0.7rem 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
}

.words {
  overflow: hidden;
  position: relative;
}
.words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--bg-color) 10%,
    transparent 30%,
    transparent 70%,
    var(--bg-color) 90%
  );
  /* z-index: 1; */
}

.word {
  display: block;
  height: 100%;
  padding-left: 0.5rem;
  color: #956afa;
  animation: spin 6s infinite 1s;
}

@keyframes spin {
  10% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }

  20% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  30% {
    -webkit-transform: translateY(-202%);
    transform: translateY(-202%);
  }

  40% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  50% {
    -webkit-transform: translateY(-302%);
    transform: translateY(-302%);
  }

  60% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  70% {
    -webkit-transform: translateY(-402%);
    transform: translateY(-402%);
  }

  80% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
  90% {
    -webkit-transform: translateY(-502%);
    transform: translateY(-502%);
  }

  100% {
    -webkit-transform: translateY(-500%);
    transform: translateY(-500%);
  }
}

/* === removing default button style ===*/
.button {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* button styling */
.button {
  --border-right: 6px;
  --text-stroke-color: rgba(0, 0, 0, 0.6);
  --animation-color: #3b82f6;
  --fs-size: 1em;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: var(--fs-size);
  font-family: "Arial";
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-stroke-color);
}
/* this is the text, when you hover on button */
.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
}
/* hover */
.button:hover .hover-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color));
}

.welcome-img {
  position: absolute;
  top: 10%;
  z-index: -1;
  width: 25%;
}
/* MAIN end                                          */

/* Exp start                                      */

.exp-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.exp-section-title {
  font-size: 2rem;
  font-weight: bold;
}

.exp-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.exp-card-body {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
}

.exp-logo-section {
  flex-shrink: 0;
  display: flex;
  align-items: start;
  justify-content: center;
}

.exp-logo-container {
  width: 80px;
  height: 80px;
  background-color: white;
  padding: 0.5rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exp-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.exp-content-section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exp-card-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.exp-title-area {
  display: flex;
  flex-direction: column;
}

.exp-card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.exp-card-company {
  font-size: 1.125rem;
  font-weight: 500;
  color: #3b82f6; /* text-primary */
}

.exp-date-badge {
  height: fit-content;
  width: fit-content;
  font-size: 0.875rem;
  color: #6b7280; /* muted-foreground */
  border: 1px solid #d1d5db; /* border */
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
}

.exp-description {
  color: #6b7280;
}

.exp-achievements {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exp-achievements-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.exp-achievements-list {
  list-style-type: disc;
  padding-left: 1.25rem;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Exp End                                           */

/* Skills start                                      */

.skills-img {
  position: relative;
  top: 10%;
  z-index: -1;
  width: 20%;
}
.skill-container {
  background-color: rgba(108, 117, 125, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.skill-title {
  font-size: 2rem;
  font-weight: bold;
}

/* Grid layout for skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Skill card styling */
.skill-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.skill-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.skill-card img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.skill-card span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Skills end                                        */

/* Work Section start                                  */

.work-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 2rem;
}

.project-section {
  display: flex;
  gap: 2rem;
  align-items: self-start;
}
.project-section-two {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  align-items: self-start;
}
.project-image-column {
  width: 100%;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-content-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-title {
  font-size: 1.75rem;
  font-weight: bold;
}

.project-description {
  color: #555;
  line-height: 1.6;
}
.tech-title {
  font-size: 1rem;
  font-weight: 700;
}
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-stack span {
  background-color: #e5e5e5;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

.features-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  color: #666;
  font-size: 0.95rem;
}

.project-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-blue {
  background-color: #2563eb;
  color: #fff;
}

.btn-blue:hover {
  background-color: #1e40af;
}

.btn-dark {
  background-color: #111827;
  color: #fff;
}

.btn-dark:hover {
  background-color: #000;
}

/* Work Section End                                   */

/* Eduction Start                                     */

#education {
  background-color: rgba(108, 117, 125, 0.2);
  padding: 4rem 1.5rem;
}

.edu-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.education-entry {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.edu-logo {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.edu-logo img {
  max-width: 100%;
  max-height: 20rem;
  object-fit: contain;
}
.edu-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.edu-details h3 {
  font-size: 1.3rem;
  font-weight: bold;
}

.edu-details .degree {
  font-size: 1.1rem;
}

.edu-details .duration {
  font-size: 0.9rem;
  color: #6c757d;
}

.edu-details .desc {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Eduction End                                      */

/* Footer links ...                                  */

footer {
  padding: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
}

.main {
  width: 100%;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 600px;
  height: 60px; */
  background: lightgrey;
  transition: 0.4s ease-in-out, 0.2s background-color ease-in-out,
    0.2s background-image ease-in-out;
  background: rgba(255, 255, 255, 0.596);
  backdrop-filter: blur(5px);
  border: 1px solid transparent;
  -webkit-backdrop-filter: blur(5px);
}

.codeforces_to img {
  height: 3.5rem;
  width: 3.5rem;
  opacity: 0;
  transition: 0.2s ease-in-out;
  overflow: hidden;
}

.card .youtube {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: red;
}
.youtube_to {
  border-top-left-radius: 10px;
}

.card:nth-child(2) {
  border-radius: 0px;
}
.card:nth-child(2) .twitter {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #000;
}
.card .link {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #0a66c2;
}
.card:nth-child(3) {
  border-radius: 0;
}
.card .instagram {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #e4405f;
}
.card:nth-child(4) {
  border-radius: 0px;
}
.card .twitter {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: black;
}
.card:nth-child(5) {
  border-radius: 0px;
}
.card .leetcode {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: black;
}
.card:nth-child(6) {
  border-radius: 0px;
}
.card .codeforces_to {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: black;
}
.github_to {
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0px;
}

.github_to .github {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #000;
}

.main:hover {
  width: fit-content;
  cursor: pointer;
}
.main:hover .main_back {
  opacity: 0;
  backdrop-filter: blur(10px);
}
.main:hover .card {
  margin: 0.65em;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.main:hover .text {
  opacity: 0;
  z-index: -3;
}
.main:hover .youtube {
  opacity: 1;
}
.main:hover .instagram {
  opacity: 1;
}
.main:hover .twitter {
  opacity: 1;
}
.main:hover .github {
  opacity: 1;
}
.main:hover .link {
  opacity: 1;
}
.main:hover .leetcode {
  opacity: 1;
}
.main:hover .codeforces_to img {
  opacity: 1;
}

a:nth-child(1):hover .youtube_to {
  background-color: #ff0000;
}
a:nth-child(1):hover .youtube {
  fill: #fff;
}
a:nth-child(2):hover .link_to {
  background-color: #0a66c2;
}
a:nth-child(2):hover .link {
  fill: #fff;
}
a:nth-child(3):hover .insta_to {
  background: linear-gradient(
    72.44deg,
    #ff7a00 11.92%,
    #ff0169 51.56%,
    #d300c5 85.69%
  );
}
a:nth-child(3):hover .instagram {
  fill: white;
}
a:nth-child(4):hover .x_to {
  background-color: #000;
}
a:nth-child(4):hover .twitter {
  fill: white;
}
a:nth-child(5):hover .leetcode_to {
  background-color: #fff;
}
a:nth-child(5):hover .leetcode {
  fill: white;
}
a:nth-child(6):hover .codeforces_to {
  background-color: #fff;
}
a:nth-child(6):hover .codeforces {
  fill: white;
}
a:nth-child(7):hover .github_to {
  background-color: black;
}
a:nth-child(7):hover .github {
  fill: white;
}

.text {
  position: absolute;
  font-size: 0.85em;
  transition: 0.4s ease-in-out;
  color: black;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.25em;
  z-index: 3;
}

.tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #000;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tooltip::before {
  position: absolute;
  content: "";
  height: 0.5rem;
  width: 0.5rem;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.youtube_to:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.youtube_to:hover .tooltip {
  background: #ff0000;
  color: #fff;
}

.link_to:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.link_to:hover .tooltip {
  background: #0a66c2;
  color: #fff;
}

.insta_to:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.insta_to:hover .tooltip {
  background: linear-gradient(
    72.44deg,
    #ff7a00 11.92%,
    #ff0169 51.56%,
    #d300c5 85.69%
  );
  color: #fff;
}

.x_to:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.x_to:hover .tooltip {
  background: black;
  color: #fff;
}

.leetcode_to:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.leetcode_to:hover .tooltip {
  background: #fff;
  color: #000;
}

.codeforces_to:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.codeforces_to:hover .tooltip {
  background: #fff;
  color: #000;
}

.github_to:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.github_to:hover .tooltip {
  background: black;
  color: #fff;
}

/* Resume btn */
.down {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
  margin: 1rem;
}
.btn_a {
  text-decoration: none;
  font-size: 0.75em;
  color: black;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.397);
  background: rgba(255, 255, 255, 0.596);
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 8px;
  border-radius: 5px;
  margin: 0 5px;
  transition: 0.2s;
  border: 1px solid transparent;
  z-index: 3;
}

.btn_a:hover {
  box-shadow: 0 6px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

.btn_a:active {
  transform: translateY(2px);
  box-shadow: none;
}

/* Footer Links End ...                               */

/* Tablet View (768px to 1024px) */
@media screen and (max-width: 1100px) {
  .head_container {
    width: 90%;
    padding: 0.5rem 1rem;
    gap: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .navbar {
    gap: 1rem;
  }

  .nav-links {
    font-size: 1.2rem;
  }

  .container-custom {
    width: 85%;
  }

  .main-heading {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns instead of 4 */
  }

  .exp-card-body {
    flex-direction: column;
  }

  .project-section,
  .project-section-two {
    flex-direction: column;
  }

  .project-content-column,
  .project-image-column {
    width: 100%;
  }

  .button {
    --fs-size: 0.9em;
  }

  .welcome-img,
  .skills-img {
    width: 40%;
  }
}

/* MOBILE VIEW STYLES */
@media screen and (max-width: 644px) {
  .head_container {
    display: none;
  }
  .container {
    display: none;
  }
  .hero_card {
    display: none;
  }
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    font-size: 1.25rem;
  }

  .home-section {
    flex-direction: column;
    padding: 1rem;
  }

  .container-custom {
    width: 90%;
    text-align: center;
  }

  .main-heading {
    font-size: 2rem;
  }

  .intro-text,
  .description {
    font-size: 2rem;
  }

  .button-group {
    justify-content: center;
  }

  .welcome-img {
    position: static;
    width: 80%;
    margin: 1rem auto;
    display: block;
  }

  .exp-card-body {
    flex-direction: column;
    align-items: center;
  }

  .exp-logo-container {
    width: 60px;
    height: 60px;
  }
  .exp-card-header {
    flex-direction: column;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-section,
  .project-section-two {
    flex-direction: column;
  }

  .project-image-column,
  .project-content-column {
    width: 100%;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-description {
    font-size: 0.95rem;
  }
  .education-entry {
    flex-direction: column;
  }

  .main {
    gap: 0.5rem;
  }
  .card {
    opacity: 1;
  }
  .codeforces_to img,
  .card .youtube,
  .card:nth-child(2),
  .twitter,
  .card .link,
  .card .instagram,
  .card .twitter,
  .card .leetcode,
  .card .codeforces_to,
  .github_to .github,
  .main:hover .codeforces_to {
    width: 70%;
    height: 70%;
    opacity: 1 !important;
  }
  .codeforces_to img {
    height: 2rem;
    width: 2rem;
  }
  .text {
    display: none;
  }
}
