@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: #f7f7f7;
  font-family: "Poppins", sans-serif;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3);
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: rgb(115, 3, 167);
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0e2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  font-size: 1.57rem;
  color: #0e2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #011aff;
  border-bottom: 0.2rem solid #011aff;
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #011aff;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
@media (max-width: 600px) {
  header,
  header .navbar,
  #menu {
    display: none !important;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
  padding-top: 8.5rem;
}
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
.home .image {
  flex: 1 1 40rem;
  z-index: 1;
}
.home .image img {
  width: 70%;
  margin-left: 6rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.home .image img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #002057;
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #ff7b00;
}
.home .content p {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.5rem;
  color: rgb(148, 8, 8);
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 18px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  background: #1a047e;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
.socials {
  position: relative;
  margin-top: 9rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }
  .socials {
    margin-top: 12rem;
  }
  .home .image img {
    margin-top: -12rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
}
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  background: rgb(255, 255, 255);
  min-height: 100vh;
  padding-top: 8.5rem;
}
.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 5rem 2rem 2rem 2rem;
  justify-content: center;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img {
  margin: 4rem;
  width: 40rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  cursor: pointer;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 3.5rem;
}
.about .row .content .tag {
  font-size: 2.2rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1.5rem;
}
.about .row .content p {
  font-size: 2.2rem;
  margin-top: 2rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  font-family: "Nunito";
  font-weight: 600;
  font-size: 2rem;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: #011aff;
}
.resumebtn {
  margin-top: 6rem;
}
.resumebtn .btn {
  padding: 2.2rem 4rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
  font-size: 2.2rem;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #1a047e;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }
  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    height: 100%;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
@media (max-width: 600px) {
  .about .row .image img {
    width: 170px;
    height: 200px;
    margin: 2.2rem auto;
    border-radius: 8%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.18);
  }
  .about .row .content h3 {
    font-size: 2.3rem;
  }
  .about .row .content .tag {
    font-size: 1.6rem;
  }
  .about .row .content p {
    font-size: 1.35rem;
    margin-top: 1.3rem;
  }
  .about .row .content .box-container {
    font-size: 1.25rem;
  }
  .resumebtn .btn {
    font-size: 1.4rem;
    padding: 1.7rem 2.7rem;
  }
}
/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  min-height: 90vh;
  background: linear-gradient(to bottom, #57059e, #4a00e0);
  padding-top: 8.5rem;
}
.skills h2 {
  color: #fff;
}
.skills .heading span {
  color: rgb(255, 230, 0);
}
.skills .container {
  background: none;
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
}
.skills .container .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-wrap: unset;
  justify-content: unset;
  gap: 2rem;
}
.skills .container .bar {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 22, 0.9);
  transition: 0.2s;
}
.skills .container .bar:hover {
  box-shadow: 0 8px 10px rgba(0, 2, 68, 0.8) !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
}
.skills .container .bar .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.skills .container .bar .info i {
  font-size: 4rem;
}
.skills .container .bar .info span {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Poppins";
  margin-left: 0.5rem;
}
.skills-category {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  margin: 0;
  min-width: 0;
  max-width: 100%;
  display: block;
  vertical-align: unset;
  transition: box-shadow 0.2s, transform 0.2s;
}
.skills-category:hover {
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.18);
  transform: translateY(-4px) scale(1.02);
}
.skills-category h3 {
  font-size: 2.2rem;
  color: #2506ad;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 2px solid #ececec;
  padding-bottom: 0.7rem;
}
.skills-category ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.7rem;
  color: #222;
  margin-top: 1.2rem;
}
.skills-category ul > li {
  margin-bottom: 1.1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  background: transparent;
  font-weight: bold;
  transition: color 0.2s;
  box-shadow: none;
}
.skills-category ul > li:hover {
  background: transparent;
  color: #2506ad;
}
.skills-category ul ul {
  margin-top: 0.5rem;
  margin-left: 2.2rem;
  list-style: disc inside;
  font-size: 1.5rem;
  color: #444;
}
.skills-category ul ul li {
  margin-bottom: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 0.3rem;
  background: transparent;
  font-weight: bold;
  transition: color 0.2s;
}
.skills-category ul ul li:hover {
  background: transparent;
  color: #2506ad;
}
@media (max-width: 900px) {
  .skills-category {
    min-width: 220px;
    max-width: 100%;
    margin: 1.2rem 0.5rem;
    padding: 1.5rem 1rem;
  }
  .skills-category h3 {
    font-size: 1.7rem;
  }
  .skills-category ul {
    font-size: 1.3rem;
  }
  .skills-category ul ul {
    font-size: 1.1rem;
  }
}
.skills .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
/* skills media queries starts*/
@media screen and (max-width: 600px) {
  .skills .container {
    padding: 0;
    margin: 0;
  }
  .skills .container .row {
    grid-template-columns: 1fr;
    margin: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    gap: 1.5rem;
  }
  .skills .container {
    margin-top: 5px;
    width: 100%;
  }
  .skills-category {
    max-width: 90%;
    margin: 0 auto;
  }
}
/* skills media queries ends*/
/* skills section ends */

/* education section starts */
.education {
  background: #e5ecfb;
  min-height: 80vh;
  padding-top: 8.5rem;
}
.education .qoute {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  margin-top: 0.5rem;
}
.education .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.education .box-container .box {
  display: flex;
  flex-direction: row;
  margin-bottom: 3.5rem;
  border: 2.5px solid #2506ad;
  border-radius: 1.2rem;
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.18);
  background: #fff;
}
.education .box-container .box:first-child {
  margin-top: 2.5rem;
}
.education .box-container .box:hover {
  transform: scale(1.03);
  box-shadow: 1rem 0.5rem 1.2rem rgba(0, 0, 0, 0.3);
}
.education .box-container .box .image {
  flex: 1 1 20rem;
  width: 100%;
}
.education .box-container .box img {
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 100%;
}
.education .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  flex: 1 1 70rem;
}
.education .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #012970;
  padding: 0.5rem 0;
  font-weight: 600;
  text-align: left;
  margin-left: 1rem;
}
.education .box-container .box .content p {
  font-size: 1.5rem;
  margin-left: 1rem;
  text-align: left;
}
.education h4 {
  font-size: 2rem;
  color: rgb(34, 109, 0);
  text-align: left;
  margin: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

/* education media queries starts*/
@media screen and (max-width: 600px) {
  .education .box-container .box {
    flex-direction: column;
    width: 100%;
  }
  .education .box-container .box .image {
    width: 100%;
    height: 25rem;
  }
  .education .box-container .box img {
    width: 100%;
  }
  .education .box-container .box .content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-wrap: wrap;
    flex: 0;
  }
  .education .btns {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-wrap: wrap;
  }
}
/* education media queries ends*/
/* education section ends */

/* work section starts */
.work {
  /* background: #010124; */
  background: linear-gradient(to bottom, #000031, #00002c);
  padding-top: 8.5rem;
}
.work h2 {
  color: #fff;
  padding: 1rem;
  margin-bottom: 2rem;
}
.work .heading span {
  color: rgb(255, 230, 0);
}
.work .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem; 
  margin: 2rem;
  justify-content: center;
}
.work .box-container .box {
  flex: 1 1 32rem; 
  border-radius: 0.8rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  height: auto;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.work .box-container .box img {
  height: 200px; 
  width: 100%;
  object-fit: cover;
}
.work .box-container .box .content {
  height: auto;
  width: 100%;
  position: static;
  background: transparent;
  padding: 2rem; 
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.work .box-container .box .content .tag {
  justify-content: center;
}
.work .box-container .box .content .tag h3 {
  font-size: 1.7rem; 
  color: #333;
  text-align: center;
  margin-bottom: 1.2rem; 
}
.work .desc strong {
  font-size: 1.25rem; 
  display: block;
  margin-bottom: 0.5rem;
}
.work .desc .features,
.work .desc .tech-stack ul {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  margin-top: 0;
  padding-left: 1.5rem;
  list-style: disc inside;
}
.work .desc .tech-stack ul {
  margin-top: 0.5rem;
}
.work .desc p {
  font-size: 1.3rem; 
  line-height: 1.6;
  margin-bottom: 1.2rem; 
}
.work .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}
.work .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.1rem 1.8rem; 
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: #fff;
  background: rgb(12, 12, 12);
  margin-right: 2rem;
}
.work .desc .btns .btn:hover {
  background: #310ae0f5;
}
.work .viewall {
  display: flex;
  justify-content: center;
}
.work .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.work .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.work .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.work .viewall .btn:hover {
  background: #fff;
  color: #000;
}
.work .viewall .btn:hover i {
  transform: translateX(5px);
}
.work .box-container .box {
  cursor: pointer;
}
.work .box-container .box .desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .work .box-container .box img {
    height: 90%;
    margin: 0 auto;
    display: block;
  }
}
/* work section ends */

/* experience section starts */
.experience {
  background: #f7f8fa;
  padding: 8.5rem 0 2rem 0;
}
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 8px;
  background: linear-gradient(180deg, #2506ad 0%, #ffae00 100%);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -4px;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 0 12px 2px #ffae00, 0 0 24px 6px #2506ad;
  overflow: visible;
  animation: lokiTimelineGlow 2.5s linear infinite;
}
@keyframes lokiTimelineGlow {
  0% {
    box-shadow: 0 0 12px 2px #ffae00, 0 0 24px 6px #2506ad, 0 0 0 0 #fff0;
    filter: brightness(1.05) drop-shadow(0 0 2px #ffae00);
  }
  50% {
    box-shadow: 0 0 18px 4px #ffae00, 0 0 36px 10px #2506ad, 0 0 8px 2px #fff8;
    filter: brightness(1.12) drop-shadow(0 0 4px #ffae00);
  }
  100% {
    box-shadow: 0 0 12px 2px #ffae00, 0 0 24px 6px #2506ad, 0 0 0 0 #fff0;
    filter: brightness(1.05) drop-shadow(0 0 2px #ffae00);
  }
}
.experience .container {
  z-index: 1;
  background: rgba(255,255,255,0.97);
  padding: 0 40px 40px 40px;
  position: relative;
  width: 50%;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.experience .left {
  left: -7vw;
}
.experience .right {
  left: 45vw;
}
.experience .container::before {
  content: "";
  position: absolute;
  top: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2506ad 0%, #ffae00 100%);
  z-index: 11;
  border-radius: 2px;
  opacity: 0.85;
}
.experience .left::before {
  left: 100%;
  width: calc(14vw - 7vw + 4px); 
  background: linear-gradient(90deg, #2506ad 0%, #ffae00 100%);
}
.experience .right::before {
  right: 100%;
  width: calc(43vw - 38vw + 4px); 
  background: linear-gradient(270deg, #2506ad 0%, #ffae00 100%);
}
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 32px;
  height: 32px;
  right: -16px;
  background: #fff;
  border: 4px solid #2506ad;
  top: 24px;
  border-radius: 50%;
  z-index: 100;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
  color: #2506ad;
  font-family: "Font Awesome 5 Free";
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.experience .right::after {
  left: -16px;
  right: auto;
}
.experience .content {
  background: transparent;
  position: relative;
  border-radius: 1rem;
  padding: 2.2rem 2rem 1.2rem 2rem;
}
.experience .content .tag {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2506ad;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.experience .content .desc {
  margin-left: 0;
  padding-bottom: 0.5rem;
}
.experience .content .desc h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #ffae00;
  margin-bottom: 0.5rem;
}
.experience .content .desc p {
  font-size: 1.7rem;
  color: #222;
  margin-bottom: 0.7rem;
}
.experience .content .desc ul {
  margin: 0.5rem 0 0 1.5rem;
  font-size: 1.2rem;
  color: #444;
  list-style: disc inside;
}
.experience h2.heading {
  padding-bottom: 2.5rem;
}
.experience .content .desc h4 {
  font-size: 1.5rem;
  color: #2506ad;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .experience .timeline {
    padding: 0 0.5rem;
  }
  .experience .container {
    width: 100%;
    left: 0 !important;
    margin-bottom: 2rem;
    padding: 0 1rem 1.5rem 1rem;
  }
  .experience .left,
  .experience .right {
    left: 0;
  }
  .experience .container::before {
    display: none;
  }
  .experience .timeline::after {
    left: 24px;
    margin-left: 0;
  }
  .experience .container::after {
    left: -24px;
    right: auto;
  }
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience {
    min-height: 80vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  /* Remove loki timeline in mobile version */
  .experience .timeline::after {
    display: none;
  }
  .experience .container {
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    margin-bottom: 2rem;
  }
  .experience .container::after {
    display: none;
  }
  .experience .container::before {
    display: none;
  }
  .experience .left::after {
    display: none;
  }
  .experience .right::after {
    display: none;
  }
  .experience .right {
    left: 0%;
  }
  .experience .content {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* Certifications section background */
.certifications {
  background: #e5ecfb;
}
.certifications .container {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Contact section background to white */
.contact {
  min-height: 40vh; 
}
.contact .heading {
  padding-top: 4rem;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */

/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 43);
}
.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
}
.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: normal;
}
.footer .box-container .box p {
  font-size: 1.5rem;
  color: #ccc;
  padding: 0.7rem 0;
  text-transform: none;
}
.footer .box-container .box p i {
  padding-right: 1rem;
  color: #ffae00;
}
.footer .box-container .box a {
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  padding: 0.3rem 0;
  display: block;
}
.footer .box-container .box a:hover {
  color: #ffae00;
}
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: 0.1rem solid #fff3;
}
.footer .credit a {
  color: #ffae00;
}
.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}
@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }
  .footer .box-container .box p {
    padding: 0.7rem;
  }
  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}
/* footer section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */

.certifications .heading {
  padding-top: 4rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 3rem;
  justify-items: center;
  align-items: stretch;
  margin-top: 3rem;
}
.certification-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(44,62,80,0.13);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  max-width: 420px;
  width: 100%;
}
.certification-card:hover {
  box-shadow: 0 12px 36px rgba(44,62,80,0.18);
  transform: translateY(-6px) scale(1.04);
}
.certification-card img {
  width: 100%;
  max-width: 370px;
  height: 260px;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(44,62,80,0.13);
  object-fit: cover;
  background: #f7f7f7;
  margin-bottom: 1.5rem;
}
.certification-card h3 {
  font-size: 2rem;
  color: #2506ad;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (max-width: 1100px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .certification-card {
    padding: 1.2rem 0.5rem;
    max-width: 98vw;
  }
  .certification-card img {
    max-width: 100%;
    height: 180px;
  }
  .certification-card h3 {
    font-size: 1.3rem;
  }
}

/* certifications mobile media queries starts */
@media screen and (max-width: 600px) {
  .certification-card {
    padding: 2rem 1rem;
    min-height: 300px;
  }
  .certification-card img {
    height: 250px;
  }
  .certification-card h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}
/* certifications mobile media queries ends */

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (max-width: 600px) {
  .home {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: 2.5rem;
  }
  .home .image {
    padding-top: 30rem;
    margin-bottom: 0;
    margin-top : 0rem;
  }
  
  .home .image {
    order:-1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .home .image img {
    width: 250px;
    height: 250px;
    max-width: 250px;
    max-height: 250px;
    border-radius: 50%;
    object-fit: cover;
  }
  .home .content h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    margin-top: 0;
  }
  .home .content p {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .socials {
    margin-top: 0.7rem;
    margin-bottom: 1.2rem;
    order: 3;
  }
  .home .btn {
    position: static;
    display: inline-block;
    margin: 0 auto;
    margin-top: 0.5rem;
    margin-bottom: 0;
    order: 4;
  }
  .home .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
  }
  .home .content h2 {
    order: 1;
  }
  .home .content p {
    order: 2;
  }
  .socials {
    order: 3;
  }
  .home .btn {
    order: 4;
  }
}
@media (max-width: 600px) {
  .home .image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-top: 15rem;
  }
  .home .image img {
    width: 250px;
    height: 250px;
    max-width: 250px;
    max-height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .home .content h2 span {
    font-size: 2.1rem;
  }
}
