
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
}


body {
  font-family: "Poppins", sans-serif;
  /* padding: 1px; */
}

/* .desktop-nav{
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2), 5px 2px 4px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  font-weight: 500;
  border-radius: 5px;

  
} */

.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 4rem;
  padding-top: 0.7rem;
  background:black(251, 248, 248);
  /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
              /* 0px 2px 6px rgba(0, 0, 0, 0.05); */
  margin: 1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  gap: 15px;
}

.desktop-nav:hover {
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15), 
              0px 5px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.desktop-nav .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  transition: color 0.3s ease;
  display: flex;
  gap:10px;
  justify-content: center;
  align-items: center;
}

.desktop-nav .logo:hover {
  color: #007bff; 
}

.desktop-nav .nav-links {
  display: flex;
  gap: 1.5rem;
}

.desktop-nav .nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #555;
  transition: color 0.3s ease-in-out, transform 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}



.nav-links li:hover a {
  color: #3498db;
}

html {
  scroll-behavior: smooth;
}

p {
  color: rgb(85, 85, 85);
}

/* TRANSITION */

a,
.btn {
  transition: all 300ms ease;
}

/* DESKTOP NAV */

nav,
.nav-links {
  display: flex;
}

nav {
  justify-content: space-around;
  align-items: center;
  height: 17vh;
}

.nav-links {
  gap: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

a {
  color: black;
  text-decoration: none;
  text-decoration-color: white;
}

/* a:hover {
  color: grey;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: rgb(181, 181, 181);
  transition: all 0.3 ease-in-out;
} */

.logo {
  font-size: 2rem;
}

.logo:hover {
  cursor: default;
}

/* HAMBURGER MENU */

#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3 ease-in-out;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgb(183, 45, 45);
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3 ease-in-out;
}

.menu-links a {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  transition: all 0.3 ease-in-out;
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 300px;
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
  transform: none;
}

.hamburger-icon span:first-child {
  opacity: 1;
}

.hamburger-icon span:first-child {
  transform: none;
}

/* SECTIONS */

section {
  padding-top: 4vh;
  height: 96vh;
  margin: 0 10rem;
  box-sizing: border-box;
  min-height: fit-content;
}

.section-container {
  display: flex;
}

/* PROFILE SECTION */

#profile {
  display: flex;
  justify-content: center;
  gap: 5rem;
  height: 80vh;
}

.section__pic-container {
  display: flex;
  height: 400px;
  width: 400px;
  margin: auto 0;
}

.section__text {
  align-self: center;
  text-align: center;
}

.section__text p {
  font-weight: 600;
}

.section__text__p1 {
  text-align: center;
}

.section__text__p2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
  text-align: center;
}

#socials-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem;
}

/* ICONS */
.icon{
  cursor: pointer;
  height: 2rem;
}
.icon-small{
  cursor: pointer;
  height: 2.7rem;
}
.maria-icon
{
  margin-left: 1.5rem;
  cursor: pointer;
  height: 3.5rem;
}
.icon3 {
  cursor: pointer;
  height: 4.5rem;
}

.icon-large {
  cursor: pointer;
  height: 4.8rem;
}
.icon1
{
  cursor: pointer;
  height: 4rem;
}

.icon2
{
  cursor: pointer;
  height: 3.2rem;
  margin-left: 1rem;
  margin-top: 1rem;

}
.frappe-icon
{
  cursor: pointer;
  height: 3rem;
  margin-top: 0.8rem;

}
.fav
{
  border: 10px solid black;
}

/* BUTTONS */

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  font-weight: 600;
  transition: all 300ms ease;
  font-size: 0.8rem;
  padding: 0.7rem;
  width: 9rem;
  border-radius: 0.3rem;
}

.btn-color-1,
.btn-color-2 {
  border: rgb(53, 53, 53) 0.1rem solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
  text-decoration: none;

}

.btn-color-1,
.btn-color-2:hover {
  background: rgb(53, 53, 53);
  color: white;
}

.btn-color-1:hover {
  background: rgb(0, 0, 0);
}

.btn-color-2 {
  background: none;
}

.btn-color-2:hover {
  border: rgb(255, 255, 255) 0.1rem solid;
}

.btn-container {
  gap: 1rem;
}

/* ABOUT SECTION */

#about {
  position: relative;
}

.about-containers {
  gap: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  /* align-items: center; */
}

.about-details-container {
  justify-content: center;
  flex-direction: column;
  margin-bottom: 4rem;
}

.about-containers,
.about-details-container {
  display: flex;
  justify-content: center;
}

.about-pic {
  border-radius: 2rem;
  height: 15rem;
}

section .arrow{
  text-align: right;
}


.details-container {
  padding: 1.5rem;
  flex: 1;
  background: white;
  border-radius: 2rem;
  border-color: rgb(163, 163, 163);
  text-align: center;
}
.details-container1 {
  padding: 1rem;
  background: white;
  border-radius: 1.6rem;
  text-align: center;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);

}
.section-container {
  gap: 4rem;
  height: 80%;
}

.section__pic-container {
  height: 300px;
  width: 300px;
  margin: auto 0;
}

/* EXPERIENCE SECTION */


#experience {
  position: relative;
}

.experience-sub-title {
  color: rgb(85, 85, 85);
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.experience-details-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.experience-details-container1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.article-container {
  display: flex;
  text-align: initial;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1.3rem;
  justify-content:center;

}

article {
  width: 6.9rem;
  height: 7.4rem;
  text-align: center;
  padding: 1px 12px;
  border-radius: 5px;

  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2), 5px 2px 4px rgba(0, 0, 0, 0.05);
  

}

article .icon {
  cursor: default;
}

/* PROJECTS SECTION */

#projects {
  position: relative;
}

.color-container {
  border-color: rgb(163, 163, 163);
}

.project-img {
  border-radius: 1.7rem;
  margin-top: 0.5rem;
  width: 300px;
  height: 250px;
  object-fit:contain;
  cursor: pointer;
}


.project-btn {
  color: black;
  border-color: rgb(163, 163, 163);
  width: 3rem;
  padding: 0.5rem;
  border-radius: 2rem;
  transition: all 300ms ease;



}

/* CONTACT */

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 2rem 1rem;
  /* background: linear-gradient(to bottom, #ffffff, #f5f5f5); */
}



.contact-info-upper-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-container {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 10px 5px 15px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px;
}

.contact-info-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-container img.icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

.contact-info-container:hover img.icon {
  transform: scale(1.1);
}

.contact-info-container.wh img.em-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.contact-info-container p {
  margin: 0;
  font-size: 1.1rem;
}

.contact-info-container a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-container a:hover {
  color: #007bff;
}

/* Media Queries */
@media (max-width: 768px) {
  .desktop-nav{
    margin: 0rem;
    padding: 7px 14px;
  }
  #contact {
    padding: 1rem;
  }

  .title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .contact-info-upper-container {
    padding: 1rem;
    gap: 1rem;
  }

  .contact-info-container {
    /* padding: 1rem 1.5rem; */
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .section__text__p1 {
    font-size: 1rem;
  }
  .desktop-nav{
    margin: 0rem;
    padding: 7px 14px;
  }

  .title {
    font-size: 1.75rem;
  }

  .contact-info-container {
    width: 100%;
    flex-direction: column;
    text-align: center;
    /* padding: 1.5rem; */
  }

  .contact-info-container img.icon {
    margin-right: 0;
    /* margin-bottom: 0.75rem; */
  }
}

/* FOOTER SECTION */
footer {
  background:  #2c2c2c;
  color: white;
  padding: 3rem 0 2rem 0;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-nav {
  margin-bottom: 2.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 3.5rem;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.footer-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #4f8fff;
  transition: width 0.3s ease;
}

.footer-links li a:hover {
  color: #4f8fff;
}

.footer-links li a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}


.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .footer-links {
    gap: 2.5rem;
  }

  .footer-links li a {
    font-size: 1rem;
  }

  .social-link {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 2rem 0 1.5rem 0;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-nav {
    margin-bottom: 2rem;
  }

  .footer-social {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}
/* footerend */
.s-text
{
  font-size: 0.9rem;
  /* margin-top: 0.5rem; */
  background-color: #000;
  color: white;
  padding: 5px 0px;
  border-radius: 3px;
  width: 100%;
  
}

.nav-btn
{
  border-radius: 4px;
  padding: 5px;
  background-color: black;
  color: white;
}


/* Experience Section */
/* .experience-section {
  padding: 40px;  
  
} */

.experience-header h2 {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  margin-top: 60px;
}
.titler{
  margin-top: 50px;
  text-align: center;
  color:  #333;
  font-size: 2rem;
}

.experience-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 23px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px); 
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.2); /* Adds a stronger shadow effect */
  z-index: 1;
}

.job-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #000;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.company-name {
  font-size: 1rem;
  color: #000;
  margin:0px1 0px 10px 0px;
}

.job-duration {
  font-size: 0.9rem;
  margin-bottom: 10px;
}


.job-description {
  padding-left: 20px;
  margin: 0;
}

.job-description li {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .experience-card {
    width: calc(100% - 20px);
  }
}
.skills-title {
  font-size: 1.1rem;
  /* color: #0073e6; */
  margin-top: 15px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.skills-list span {
  background-color: #000;
  color: white;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 3px;
}
.skills-list1 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 1rem;
}

.skills-list1 span {
  background-color: #000;
  color: white;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 13px;
  font-weight: 700;
}

.github-link {
  padding: 2px 4px;
  display: inline; 
  text-decoration: none; 
  margin-top: 1rem;
}

.github-link:hover {
  text-decoration: underline; 
}

.section-subtitle{
  font-size: 3rem;
}


.project-card {
width: 980px;  
justify-content: space-between;
background: white; 
border-radius: 5px;   
overflow: hidden;   
box-shadow: 0 4px 15px rgba(0,0,0,0.1);  
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 2rem;
      

}

.project-card {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 20px rgba(0.1, 0.1, 0.1, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}


/* .project-card {
  border: 1px solid transparent;
  border-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
  border-image-slice: 1;

  border: 2px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, rgba(37, 117, 252, 0.4), rgba(106, 17, 203, 0.4));

  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: 4px solid rgba(37, 117, 252, 0.1);
  outline-offset: -4px;

  border-left: 4px solid #2575fc;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
} */


.project-card:hover {
  transform: translateY(-10px); 
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.2); /* Adds a stronger shadow effect */
  z-index: 1;
}



.image-title {
  font-size: 1rem;
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.project-image {
  height: 150px;
  width: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.427);
  border-radius: 5px;
  }

.project-image:hover {
  transform: scale(1.1);
}

.project-content {
  background-color: #fff;
}

.project-title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: black;

}




.project-button {
  text-decoration: none;   color: #555;   font-size: 1.5rem;   display: flex;   align-items: center;   gap: 6px;   padding: 8px 8px;   border-radius: 3px;   transition: all 0.2s ease;      color: #000; 
}

.project-button:hover {
  background-color: #fff;
  color: #000;
}

.project-navigation {
  text-align: center;
  margin-top: 3rem;
}

.project-image-container::-webkit-scrollbar {
  height: 8px;
 
}

.project-image-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  
}

.project-image-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1px;
}







@media (max-width: 768px) {


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

  /* .project-button {
      padding: 0.5rem 1rem;
      font-size: 0.7rem;
      flex-grow: 1;
      text-align: center;
  } */
  .firstX{
    display: block;
  }

  .project-actions {
      align-items: center;
      gap: 7px;
  }
} 




#education {
  /* margin-top: 3rem; */
  padding: 4rem 2rem;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%); */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
}


.education-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.education-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  height: 100%;
  width: 2px;
  background: #4299e1;
}

.education-card {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 7px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(0);
  transition: all 0.3s ease;
  border-left: 4px solid #2575fc;

}

.education-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.education-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #e0e9f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.content {
  flex-grow: 1;
}

.content h2 {
  font-size: 1.5rem;
  color: #2d3748;
  margin: 0 0 0.5rem 0;
}

.content h3 {
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.duration {
  font-size: 0.9rem;
  color: #718096;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.duration::before {
  content: '\f073';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 8px; /
}

@media (max-width: 640px) {

  #education {
    padding: 2rem 1rem;
  }
  
  .title {
    font-size: 2rem;
  }
  
  .education-card {
    padding: 1rem;
  }
  
  .content h2 {
    font-size: 1.25rem;
  }
  
  .content h3 {
    font-size: 1rem;
  }
}






.project-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .project-header {
    flex-direction: row;
    justify-content: space-between;
  }
}

.project-image-container {
  height: auto;
  max-height: 200px;
  max-width: 360px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  min-width: 360px;
}

.must-watch-tag {

  background: red;
  color: white;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  width: 120px;
  margin-top: 12px;
  text-align: center;
  text-transform: uppercase;
  animation: blink 1.8s infinite; 
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
.must-watch-tag:hover{
  animation: none;
  background-color: rgba(128, 128, 128, 0.596);
  
}




.image-title {
  font-size: 0.85rem;
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.project-image {
  height: 120px;
  width: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .project-image {
    height: 150px;
  }
}

.project-image:hover {
  transform: scale(1.1);
}

.project-title-container {
  padding: 1rem;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: black;
}

@media (min-width: 768px) {
  .project-title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }

}

.project-content {
  padding: 1rem;
  gap: 20px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .project-content {
    padding: 1.5rem;
  }
  
}

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

@media (min-width: 768px) {
  .project-footer {
    flex-direction: row;
  }
}

.project-actions {
  display: flex;
  width: 335px;
  gap: 40px;

}

.project-button {
  /* display: inline-flex; */
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
  background-color: #f0f0f0;
  color: #333;
  transition: background-color 0.3s;
}

.project-button:hover {
  background-color: #e0e0e0;
}

.tech-stack {
  /* min-width: 500px; */
  margin: 15px;

}

@media (min-width: 768px) {
  .tech-stack {
    width: 50%;
  }
}

.tech-stack h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .tech-stack h2 {
    font-size: 1.5rem;
  }
}

.skills-list1 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  
  margin-top: 10px;
  margin-bottom: 1rem;
}

.skills-list1 span {
  background-color: #000;
  color: white;
  padding: 5px 8px;
  font-size: 11px;
  border-radius: 13px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .skills-list1 span {
    font-size: 12px;
  }
}


.theme-btn{
  padding: 3px 9px;
  border: none;
  border-radius: 6px;
  font-family: system-ui;
  font-weight: 600;
  min-width: 90px;
  cursor: pointer;
}



