:root {
  --primary-color: #0520a9;
  --mediam-blue: rgb(2, 2, 207);
  --light-blue: rgb(48, 48, 252);

  --gray: gray;
}


.body {
  /* background-attachment: fixed; */
  overflow-x: hidden;
  background: linear-gradient(90deg, rgba(221, 226, 255, 1) 23%, rgb(246, 246, 246) 45%, rgb(221, 226, 255, 1) 98%);
}


.media-nav {
  background-color: #5874ff
}


.collapse {
  padding-right: 20px
}




/* Please ❤ this if you like it! */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
/* 
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: #ececee;
  background-color: #1f2029;
  overflow: hidden;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
  background-position: center;
  background-repeat: repeat;
  background-size: 4%;
  height: 100vh;
  width: 100%;
} */

.section-center {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
}

.top-menu-btn {
  display: none;


}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.menu-icon:checked+label,
.menu-icon:not(:checked)+label {
  position: fixed;
  top: 30px;
  right: 0px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2000;
}

.menu-icon:checked+label:before,
.menu-icon:not(:checked)+label:before {
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  z-index: 2000;
  top: 0;
  left: 0;
  border-top: 2px solid #ececee;
  border-bottom: 2px solid #ececee;
  transition: border-width 100ms 1500ms ease,
    top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
    height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 200ms ease,
    transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:after,
.menu-icon:not(:checked)+label:after {
  position: absolute;
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  z-index: 2000;
  top: 10px;
  right: 4px;
  background-color: #ececee;
  margin-top: -1px;
  transition: width 100ms 1750ms ease,
    right 100ms 1750ms ease,
    margin-top 100ms ease,
    transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:before {
  top: 10px;
  transform: rotate(45deg);
  height: 2px;
  background-color: #ececee;
  border-width: 0;
  transition: border-width 100ms 340ms ease,
    top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 200ms 500ms ease,
    transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:after {
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
    right 100ms ease,
    margin-top 100ms 500ms ease,
    transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav {
  position: fixed;
  top: 10px;
  right: 0px;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
  background-color: var(--main-color);
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 250ms 1100ms ease,
    width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
    height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav.scrolling {
  transition: transform 0.3s ease-in-out !important;
}

.menu-icon+label.hide {
  transform: translateY(-170%);
  transition: transform 0.3s ease-in-out;
}

.nav.hide {
  transform: translateY(-150%);
  transition: transform 0.3s ease-in-out !important;
}

@keyframes border-transform {

  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

.menu-icon:checked~.nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
    right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 250ms 700ms ease,
    width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
    height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}

.nav ul li {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}

.nav ul li:nth-child(1) {
  transition-delay: 200ms;
}

.nav ul li:nth-child(2) {
  transition-delay: 150ms;
}

.nav ul li:nth-child(3) {
  transition-delay: 100ms;
}

.nav ul li:nth-child(4) {
  transition-delay: 50ms;
}

.nav ul li:nth-child(5) {
  transition-delay: 0ms;
}

.nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 9vh;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #ececee;
  transition: all 250ms linear;
}

.nav ul li a:hover {
  text-decoration: none;
  color: #ffeba7;
}

.nav ul li a:after {
  display: block;
  position: absolute;
  top: 50%;
  content: '';
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  background-color: #353746;
  opacity: 0.8;
  transition: width 250ms linear;
}

.nav ul li a:hover:after {
  width: 100%;
}


.menu-icon:checked~.nav ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
    transform 250ms ease;
}

.menu-icon:checked~.nav ul li:nth-child(1) {
  transition-delay: 1400ms;
}

.menu-icon:checked~.nav ul li:nth-child(2) {
  transition-delay: 1480ms;
}

.menu-icon:checked~.nav ul li:nth-child(3) {
  transition-delay: 1560ms;
}

.menu-icon:checked~.nav ul li:nth-child(4) {
  transition-delay: 1640ms;
}

.menu-icon:checked~.nav ul li:nth-child(5) {
  transition-delay: 1740ms;
}




/* .logo {
  position: absolute;
  top: 60px;
  left: 50px;
  display: block;
  z-index: 11;
  transition: all 250ms linear;
}

.logo img {
  height: 26px;
  width: auto;
  display: block;
} */



@media screen and (max-width: 991px) {

  .menu-icon:checked+label,
  .menu-icon:not(:checked)+label {
    right: 45px;
  }

  .logo {
    left: 30px;
  }

  .nav {
    right: 30px;
  }


  .nav ul li a {
    font-size: 5vh;
  }
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  z-index: 99;
  margin: 0px auto;
  transition: transform 0.3s ease-in-out;
  height: auto;
}

.header.hide {
  transform: translateY(-100%);
}

.underline {
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;
  width: 220px;

}

.underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease-in-out;
}

.underline:hover::after {
  width: 100%;
}


.logo {
  margin-left: 10px;
  font-family: "Kaushan Script", serif;
  font-weight: 1000;
  font-style: normal;
  padding-bottom: 3px;
  font-size: 30px;


}

.list {
  gap: 20px;
}

.menues {
  position: relative;
  text-decoration: none;
  font-size: 17px;
  font-family: "Gruppo", serif;
  font-weight: 1000;
  padding-bottom: 2px;
  color: none;

}

.menues::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--light-blue);
  transition: width 0.3s ease-in-out;
}

.menues:hover::after {
  width: 100%;
}

.menues:hover {
  color: var(--light-blue);
}

.resume-btn {
  border: none;

}

.display-top-res-btn {
  display: none;
}


.btn-grad-res {
  background-image: linear-gradient(to right, #0844d1 0%, #363795 51%, #3336ed 100%)
}

.btn-grad-res {
  margin: 0px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  border: none;
  height: 50px;
  width: 100px;
  font-weight: 400;
}

.btn-grad-res:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

#myButton:hover {
  opacity: 0.9;
  transform: scale(1.02);
  transition: all 0.3s ease;
}



.nav-button {
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid black;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3px;
}

.nav-button:hover span {
  color: white;
}

#p-1 {
  font-size: larger;
  color: #3336ed;
  font-weight: 400;
}

.nav-button span {
  z-index: 99;
  color: black;
}

.anim-layer {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
  width: 100%;
  left: 0;
}

.nav-button:hover a {
  color: green;

}

#resume-text {
  color: black;
  font-family: "Gruppo", serif;
  font-weight: 600;
}

.nav-button a {
  display: block;
  padding: 10px 20px;
  color: var(--secondary-color);
  text-decoration: none;
  position: relative;
  z-index: 1;
}



.accont-links {
  /* border: 1px solid black; */
  /* position: relative; */
  width: 10%;
  max-height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}


.accont-links-div {
  position: fixed;
  bottom: 230px;
  left: 20px;
  width: 50px;
  height: 250px;
  border-radius: 30px;
  background-color: #cfd6f4;
  /* box-shadow: 1px 1px 10px #eeeeee; */
  /* border-bottom: 1px solid #7d7e80; */
  /* border-top:1px solid #7d7e80 ; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  z-index: 20;
  max-width: 1200px;
  margin: 0px auto;
}

.bowl {
  position: fixed;
  bottom: 223px;
  left: 28px;
  height: 50px;
  width: 34px;
  border-radius: 30px;
  background-color: #cfd6f4;
  border-bottom: 1px solid #7d7e80;

}

.stick {
  position: fixed;
  bottom: 0px;
  left: 43px;
  border: 2px solid var(--primary-color);
  height: 223px;
  width: 5px;

}

.stick-2 {
  position: fixed;
  bottom: 0px;
  right: 42px;
  border: 2px solid var(--primary-color);
  height: 215px;
  width: 5px;
  z-index: 100;
}

.stick-3 {
  position: fixed;
  bottom: 345px;
  right: -71px;
  z-index: 100;
  transform: rotate(90deg);
  text-decoration: none;
  color: rgb(48, 48, 252);
  font-weight: 400;
}

.mail-div {
  /* border: 1px solid black; */
  background-color: #cfd6f4;
  height: 270px;
  width: 30px;
  position: fixed;
  right: 21px;
  bottom: 222px;
  z-index: 200;
  width: 50px;
  border-radius: 30px;
}

.bowl-2 {
  position: fixed;
  bottom: 215px;
  right: 28px;
  height: 50px;
  width: 34px;
  border-radius: 30px;
  background-color: #cfd6f4;
  border-bottom: 1px solid #7d7e80;
}


.link-svg {
  transition: all 0.1s ease-out;
  transform: translateY('10px');

}

.fb-svg:hover {
  fill: #0520a9;
}

.link-svg:hover {
  transition: all 0.1s ease;
  transform: translate(0px, -5px);
  fill: var(--primary-color);

}

.intro-sec {
  /* border: 1px solid black; */
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding-top: 50px;
}

.intro-div {
  /* border: 1px solid black; */
  height: auto;
  width: 57%;
  display: flex;
}



.intro-para {
  /* border: 1px solid black; */
  width: 90%;
  height: auto;
  padding-top: 0px;
  padding-left: 30px;

}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes underline {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.heading-1 {
  font-size: 60px;
  font-weight: 700;
  font-family: "Phudu", serif;
  color: var(--primary-color);
  line-height: 70px;
  display: inline-block;
  position: relative;
  margin-bottom: 0px;
  /* Required for underline */
}

/* Typewriter Effect */
.typewriter {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  border-bottom: 3px solid var(--primary-color);
  width: 0;

  animation: typingBack 8s ease-in-out infinite alternate;
}

@keyframes typingBack {
  0% {
    width: 0;
  }

  50% {
    width: 13ch;
    /* or em, whatever length your text is */
  }

  100% {
    width: 0;
  }
}

.typewriter::after {
  position: absolute;
  right: 0;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}


.heading-3 {
  font-size: 55px;
  font-weight: 700;
  font-family: "Phudu", serif;
  color: var(--mediam-blue);
  line-height: 70px;
  word-spacing: 5px;
}

.project-div {
  height: 700px;
  width: 100%;
  /* border: 1px solid black; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-left: 50px;
  padding-right: 50px;

}

.projects {
  /* border: 4px solid var(--gray);x */
  box-shadow: 2px 2px 20px rgb(202, 202, 202);
  height: 320px;
  width: 30%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;

}

.projects:hover .card {
  transition: all 1s ease;
  transform: scale(1.1);
  opacity: 0.1;
}

.card-para-click {
  position: absolute;
  top: 80px;
  left: 127px;

}

.click-para {
  color: var(--main-color);
  text-decoration: overline;
  font-weight: 500;
  font-size: larger;

}

.card {
  height: 50%;
  width: 100%;
  /* border: 1px solid black; */
}

.card-info {
  background-color: #e0e2ff;
  /* border: 1px solid black; */
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.my-pro-heading {
  margin-left: 100px;
}

.underline-2 {
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;

}

.underline-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease-in-out;
}

.projects:hover .underline-2::after {
  width: 100%;
}


.para-2 {
  line-height: 15px;
  color: rgb(66, 64, 64);
  padding-left: 10px;
  padding-top: 5px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.projects:hover .para-2 {
  color: black;
}

.heading-2 {
  color: var(--primary-color);

}



.para-1 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
}

.my-img-div {
  position: relative;
  /* border: 1px solid black; */
  height: 500px;
  width: 43%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-div-2 {
  position: absolute;
  top: 60px;
  left: 110px;
  height: 400px;
  width: 280px;
  background-image: url('My-img.jpg');
  background-size: cover;
  /* border: 2px solid rgb(1, 40, 1); */
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  z-index: 5;
}

.img-div-1 {
  position: absolute;
  top: 90px;
  left: 140px;
  border: 2px solid rgb(1, 40, 1);
  height: 400px;
  width: 280px;
  border-radius: 12px;
  background-color: transparent;
  z-index: 1;
  transform: translate(0, 0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}



.img-div-2:hover~.img-div-1 {
  top: 77px;
  left: 133px;
  /* border: 4px solid rgb(8, 107, 8); */
  transform: translate(-7px, -7px);
  /* halka shift kareeb aane ka */
  border: 3px solid rgb(8, 107, 8);
}


.about-main {
  /* border: 1px solid black; */
  height: 650px;
  width: 100%;
  padding-left: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.about-sec {
  width: 50%;
  height: fit-content;
  overflow-y: hidden;
  /* border: 1px solid black; */
}

.about-h1 {
  color: var(--primary-color);
}

.about-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-img {
  height: 300px;
  width: 400px;
  border-radius: 5px;
  background-image: url('https://media.giphy.com/media/qgQUggAC3Pfv687qPC/giphy.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  transition: all 0.4s ease-in-out;
}

.second-img:hover {
  box-shadow: 4px 4px 30px rgb(158, 171, 244);
  transition: all 0.4s ease-in-out;
  transform: translateY(-10px);
}


.heading-small {
  color: var(--light-blue);
}

.contact-section>div {
  /* border: 1px solid black; */
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0px;

}


.btn-grad {
  background-image: linear-gradient(to right, #0844d1 0%, #363795 51%, #3336ed 100%)
}

.btn-grad {
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  border: none;
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.copy-right {
  font-family: "Gruppo", serif;
  font-weight: 1000;
}

.skill-list {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 50%;
  height: 100px !important;

}

.custom-list {
  list-style-type: none;
}

.custom-list li {
  display: flex;
  align-items: center;
}

.custom-list li::before {
  content: '▹';
  /* Yahan bullet point ka symbol hai */
  margin-right: 0.75rem;
  /* Text se faasla */
  color: #260096;
  /* Bullet ka color */
  font-size: 1.2rem;
  /* Thoda bara karne ke liye */
}

.waving-hand {
  display: inline-block;
  /* Zaroori hai taake transform kaam kare */
  animation: wave-animation 0.5s infinite;
  /* 2.5 seconds mein infinite chalegi */
  transform-origin: 70% 70%;
  font-size: 20px;
  /* Us point ko set kare jahan se haath hilta hai */
}

@keyframes wave-animation {
 0% { transform: rotate( 0.0deg) }
  50% { transform: rotate(14.0deg) } /* Aadha rasta ghuma hua */
  100% { transform: rotate(-8.0deg) } /* Doosri taraf ghuma hua */
}

@media screen and (max-width: 1150px) {
  .mail-div {
    display: none;
  }

  .bowl-2 {
    display: none;
  }

  .stick-2 {
    display: none;
  }

  .project-div {
    padding-right: 0px;
  }

  .about-main {
    padding-top: 100px;
  }

  .intro-sec {
    padding-top: 0px;
  }

  .my-pro-heading {
    margin-top: 200px;
  }

  .about-img {
    padding-top: 70px;
  }

}

@media screen and (max-width: 1070px) {
  .food-panda-heading {
    font-size: larger;
  }
}

@media screen and (max-width: 992px) {

  .top-menu-btn {
    display: block;
  }

  .nav {
    z-index: 1000;
    background-color: var(--primary-color);
  }

  .btn-hide {
    display: none;
  }

  .about-main {
    padding-top: 250px;
  }

  .about-img {
    padding-top: 250px;
  }

  .img-div-1 {
    display: none;
  }

  .img-div-2 {
    left: 40px;
  }

  .second-img {
    width: 350px;
  }

  .intro-sec {
    padding-top: 0px;
  }

  .my-pro-heading {
    margin-top: 400px;
  }

  .project-div {
    gap: 40px;
  }

  .projects {
    width: 43%;
  }

  .contact-section {
    margin-top: 450px;
  }

}

@media screen and (max-width: 800px) {
  .typewriter {
    font-size: 50px;
  }

  .heading-3 {
    font-size: 50px;
    line-height: normal;
  }

  .intro-para p {
    margin-bottom: 0px;
  }

  .heading-1 {
    margin-bottom: 0px;
  }

  .about-img {
    padding-top: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .second-img {
    height: 500px;
    width: 300px;
  }

  .about-main {
    padding-top: 100px;
    flex-direction: column;

  }

  .second-img {
    width: 400px !important;
  }

  .about-img {
    padding-top: 50px;
  }

  .about-sec {
    width: 100%;
  }

  .second-img {
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 700px) {
  .intro-sec {
    flex-direction: column;
    padding-top: 0px;
  }

  .intro-div {
    height: 100%;
    width: 100%;
  }

  .img-div-2 {
    left: 190px;
    width: 350px;
    height: 500px;
  }

  .about-sec {
    margin-top: 250px;
  }

  .about-sec {
    height: 100%;
    width: 100%;
  }

  .about-img {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 100px;
  }

  .second-img {
    margin: 0px auto;
  }

  .my-pro-heading {
    margin-top: 600px !important;
  }

  .my-pro-heading {
    margin-top: 480px;
  }

  .project-div {
    gap: 5px;
  }

  .projects {
    width: 45%;
    height: 45%;
  }

  .card-para-click {
    left: 34%;
  }

  .contact-section {
    margin-top: 300px;
    padding-left: 50px;
  }
}

@media screen and (max-width: 672px) {

  .projects {
    width: 45%;
  }

  .food-panda-heading {
    font-size: large;
  }

  .last-p {
    margin-right: 330px;
  }

  .contact-section {
    margin-top: 300px;
    padding-left: 70px;
  }

  .about-img {
    display: block;
    padding-top: 100px;


  }

  .about-main {
    flex-direction: column;
    display: block;
  }

  .about-h1 {
    margin-top: 0px;
  }

}

@media screen and (max-width: 600px) {

  .main-logo {
    display: none;
  }

  .first-div {
    width: 100%;
  }

  .menu {
    margin-left: 0px;
  }

  .main-logo {
    margin-left: -15px;
  }

  .logo {
    color: black;
    margin: 0px;
  }

  .intro-sec {
    display: flex;
    flex-direction: column;
    height: 100%;

  }

  .intro-para>p {
    margin-bottom: 10px;
  }


  .intro-para {
    padding-left: 20px;
    margin-right: 10px;
    line-height: 20px;
  }

  .typewriter {
    font-size: 40px;
  }

  .intro-div {
    /* border: 1px solid black; */
    width: 100%;
    height: 100%;
  }

  .heading-1 {
    font-weight: 700;
    font-family: sans-serif;
    color: var(--primary-color);
    font-size: 40px;
    line-height: normal;
    font-family: "Phudu", serif;
    font-weight: 600;
    line-height: 40px;

  }

  .heading-3 {
    font-weight: 700;
    font-family: sans-serif;
    color: var(--primary-color);
    font-size: 40px;
    line-height: normal;
    font-family: "Phudu", serif;
    font-weight: 600;
    word-spacing: 0px;
    line-height: 45px;
  }

  .display-top-res-btn {
    display: block;
    margin-top: 30px;
  }


  .link-svg {
    width: 40px;
    height: 40px;
  }


  .accont-links-div {
    bottom: 4px;
    width: 98%;
    left: 2px;
    right: 2px;
    flex-direction: row;
    height: 70px;
    gap: 40px;
    box-shadow: none;
    backdrop-filter: blur(100px);
    background-color: transparent;
  }


  /* .img-div-2 {
    position: absolute;
    top: 60px;
    left: 50px;
    height: 400px;
    width: 280px;
    background-image: url('My-img.jpg');
    background-size: cover;
    border: 2px solid rgb(1, 40, 1);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    z-index: 5;
  }

  .img-div-1{
    display: none;
  } */


  /* .my-img-div {
    position: relative;
    border: 1px solid black;
    height: 500px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 80px;
  } */

  .about-main {
    /* border: 1px solid black; */
    height: 100%;
    width: 100%;
    padding-left: 0px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .accont-links {
    display: block;
    width: 0px;
  }

  .about-sec {
    width: 100%;
    height: 100%;
    padding-top: 0px;
    margin-top: 0px;
    padding: 20px;
    /* border: 1px solid black; */
  }

  .about-h1 {
    margin-top: 0px 1 !important;
  }

  .my-pro-heading {
    margin-top: 0px !important;
  }

  .about-img {
    display: block;
    padding-top: 0px;
  }

  .second-img {
    width: 300px !important;
    background-position: center;
    /* margin-left:30px; */
  }

  .project-div {
    height: 100%;
    width: 100%;
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
    padding: 0px;

  }

  .my-pro-heading {
    margin-left: 30px;
    margin-top: 0px;
  }

  .projects {
    /* border: 4px solid var(--light-blue); */
    box-shadow: 2px 2px 20px rgb(202, 202, 202);
    height: 350px;
    width: 350px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;

  }

  .contact-section {
    /* padding-left: 35px; */
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding-left: 0px;
  }

  .contact-para {
    margin-left: 30px;
  }

  .last-lines {
    font-size: 12px;
  }

  .last-lines-2 {
    text-align: center;
    font-size: 12px;
  }

  .copy-right {
    margin-bottom: 0px;
  }


  .bowl {
    display: none;

  }

  .stick {
    display: none;
  }

  .stick-3 {
    display: none;
  }

  .stick-2 {
    display: none;
  }

  .bowl-2 {
    display: none;
  }

  .mail-div {
    display: none;
  }

  .my-img-div {
    width: 100%;
    margin-top: 100px;
  }

  .img-div-2 {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    transform: none;
    width: 300px;
    height: 450px;

  }


  .img-div-1 {
    display: none;
  }
}