body {
  margin: 0;
  background: #111;
  font-family: "Roboto", sans-serif;
}

header {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.logo,
.menu-toggle {
  display: none;
}

/* Mobile styles */
@media (max-width: 620px) {
  header {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    /* background: rgba(0, 0, 0, 0.9); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 1000;
  }

  .logo {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .logo img {
    width: 44px;
    border-radius: 50%;
  }

  .menu-toggle {
    display: block !important;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 280px;

    background: #161c1e;
    padding: 18px 20px;
    border-radius: 16px;
    flex-direction: column;
    gap: 14px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }
}

@media (max-width: 620px) {
  nav {
    display: none;
  }
}
nav a {
  color: white;
  opacity: 0.9;
  font-size: 15px;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: 400;
  padding: 8px 10px;
}

nav a:hover {
  color: #4adf5e;
  transition: color 0.2s ease-in-out;
}

nav .divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}
main {
  max-width: 1280px;
  margin: 0 auto;
}
#about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 0px;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 620px) {
  #about {
    padding: 120px 20px 50px;
  }
}

#about div {
  flex: 1 1 300px;
  box-sizing: border-box;
}

#about img {
  width: 100%;
  max-width: 300px;
  border-radius: 25px;
  padding: 4px;
  background: linear-gradient(135deg, #e81cff, #40ff3f, #fff95b, #ff0f7b);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto;
}

#about h2 {
  font-family: "Kalam", cursive;
  font-size: 2.6rem;
  margin-bottom: 15px;
  opacity: 0.9;
  color: white;
  text-align: start;
}

#para-text {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 35px;
}

.my-animation {
  font-size: 2.6rem;
  margin-bottom: 15px;
  opacity: 0.9;
  color: white;
  text-align: start;
  -webkit-text-stroke: 0.4px #20bf55;
  position: relative;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: animate 5s steps(30) infinite alternate,
    blink 0.15s step-end infinite;
}

@media (max-width: 620px) {
  .my-animation {
    display: block;
    width: 100%;
    animation: none;
    text-align: center;
  }
}
@keyframes animate {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
/* Blinking cursor effect */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@media (max-width: 620px) {
  #about h2 {
    text-align: center;
  }
}
#about p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  line-height: 1.6rem;
}

@media (max-width: 620px) {
  #about p {
    text-align: center;
  }
}
.btn {
  display: flex;
  margin-top: 2rem;
  gap: 1.5rem;
}

@media (max-width: 620px) {
  .btn {
    justify-content: center;
    text-align: center;
  }
}
.btn button {
  background-color: #9e65e9;
  color: white;
  border: none;
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}

.btn button:hover {
  transform: scale(1.05);
}

#skills {
  padding: 0rem 1rem;
  padding-top: 3rem;
}

#skills h2 {
  font-family: "Kalam", cursive;
  text-align: center;
  color: #d9d9d9;
  font-size: 2.5rem;
}

@media (max-width: 775px) {
  #skills h2 {
    margin: 2.2rem;
  }
}
.card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 40px;
  background-color: transparent;
  color: #fff;
}

.card > div {
  background: rgba(89, 91, 115, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card div > div:first-child {
  font-size: 1.2rem;
  color: #0ac8d7;
  margin-bottom: 10px;
}

.card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  margin: 15px 0;
  line-height: 1.4;
}

.card h4 span {
  color: #d9d9d9;
  text-transform: uppercase;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  color: #d9d9d9;
}

.Whatsapp-btn {
  text-align: center;
  margin-bottom: 1rem;
}

.whatsapp-btn {
  text-align: center;
}

.whatsapp-btn button {
  background: #162224;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 14px 26px;
  font-size: 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.whatsapp-btn button:hover {
  background: #0b3439;
}

@media (max-width: 775px) {
  .card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
#Tools {
  padding: 0px 20px;
  padding-top: 3rem;
  background-color: #111;
  color: #ffffff;
  text-align: center;
}

.tools {
  font-family: "Kalam", cursive;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  /* padding-bottom: 2.5rem; */
}

#Tools h2 {
  font-size: 2.5rem;
  /* margin-bottom: 40px; */
  color: #d9d9d9;
}
@media (max-width: 620px) {
  #Tools h2 {
    font-size: 2.2rem;
  }
}
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 0rem;
  margin: 0 auto;
}

.projects > div {
  background-color: #2b2c31;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 1.8rem;
  color: white;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .projects {
    grid-template-columns: 1fr;
  }
}
#project-card {
  padding: 0px 20px;
  padding-top: 3rem;
  background-color: #111;
  text-align: center;
}

#project-card h2 {
  font-family: "Kalam", cursive;
  font-size: 2.5rem;
  text-align: center;
  color: #d9d9d9;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  #project-card h2 {
    font-size: 2rem;
  }
}
.prj-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

@media (max-width: 768px) {
  .prj-card {
    padding-top: 0;
  }
}
.p-card {
  background: #161c1e;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
  max-width: 100%;
}

.p-card img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #6c31c7;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.p-card h3 {
  font-size: 1.6rem;
  margin: 1rem 0 0.5rem;
  color: #416856;
}

.p-card h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #d9d9d9;
  margin: 0.5rem 0;
}

.btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.project-btn {
  padding: 0.9rem 1.8rem;
  background-color: #6e3991;
  color: white;
  border: none;
  border-radius: 25rem;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background-color 0.3s ease;
}

.project-btn:hover {
  background-color: #eb379d;
}

#contact-page {
  background-color: #111111;
  color: #ffffff;
  padding: 0px 20px;
  padding-top: 3rem;
}

#contact-page h2 {
  text-align: center;
  font-family: "Kalam", cursive;
  font-size: 2.6rem;
  text-transform: uppercase;
  /* margin: 0.5rem 0 2rem; */
  color: #d9d9d9;
}
@media (max-width: 620px) {
  #contact-page h2 {
    font-size: 2.2rem;
  }
}
#contact-page form {
  max-width: 750px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
}

#contact-page fieldset {
  border: none;
}

#contact-page legend {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

#contact-page label {
  display: block;
  margin: 10px 0 5px;
}

#contact-page input,
#contact-page textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 5px;
  background: #222;
  color: #fff;
}

#contact-page input:focus,
#contact-page textarea:focus {
  outline: none;
  border-color: #6e3991;
}

#contact-page button {
  margin-top: 15px;
  padding: 12px 20px;
  background: #6e3991;
  border: none;
  border-radius: 5px;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  color: #ffffff;
}

#contact-page button:hover {
  background: #eb379d;
}

#social-contact {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 4rem;
}

footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 0rem 1rem;
}

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

.footer-svg .svg1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.footer-svg .svg1:hover {
  background-color: #222c30;
  color: white;
}
.svg1 a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.footer-svg .svg1 svg {
  flex-shrink: 0;
}

footer p {
  font-size: 0.9rem;
  color: #aaa;
} /*# sourceMappingURL=style.css.map */
