@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: linear-gradient(135deg, #f7f7f7 0%, #e0e0e0 50%, #c9c9c9 100%);
  font-family: "Poppins", sans-serif;
  background-attachment: fixed;
  line-height: 1.6;
  color: #333;
}

*::selection {
  background: linear-gradient(135deg, #2b3dda, #4a5aff);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: linear-gradient(135deg, rgb(235, 202, 245), rgb(245, 220, 255));
  border-radius: 10px;
}
html::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #420177, #6a0fb5);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(66, 1, 119, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #6a0fb5, #8b12e8);
  box-shadow: 0 6px 20px rgba(66, 1, 119, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* 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: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  display: block;
  padding-bottom: 1rem;
  margin: 0 auto 3rem auto;
  width: fit-content;
}
.heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgb(115, 3, 167), rgb(74, 15, 209));
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(115, 3, 167, 0.3);
}
.heading span {
  color: rgb(115, 3, 167);
  background: linear-gradient(135deg, rgb(115, 3, 167), rgb(74, 15, 209));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0e2431;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
  text-shadow: 0 4px 8px rgba(252, 140, 5, 0.3);
  transform: translateY(-2px);
}
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: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}
header .navbar ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0.2rem;
  background: linear-gradient(90deg, #011aff, #4a0fd1);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
header .navbar ul li a.active::after,
header .navbar ul li a:hover::after {
  width: 100%;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #011aff;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem;
  border-radius: 0.8rem;
}
#menu:hover {
  color: #011aff;
  background: rgba(1, 26, 255, 0.05);
  transform: scale(1.1);
}
@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: linear-gradient(135deg, #0e0f31, #1a1b4d);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 1.2rem;
    width: 26rem;
    transition: all 0.3s ease;
  }
  header .navbar ul li:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  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;
  }
}
/* hamburger icon ends */

.fa-p {
  font-size: 24px; /* Adjust size as needed */
  vertical-align: middle;
  margin-right: 8px; /* Space between icon and text */
}
/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}
.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 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.8);
}
.home .image img:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 10px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 1);
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #002057;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #ff7b00;
  background: linear-gradient(135deg, #ff7b00, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.home .content p {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.home .content p span {
  font-size: 2.5rem;
  color: rgb(148, 8, 8);
  font-weight: 600;
  padding: 1rem 0;
  background: linear-gradient(135deg, rgb(148, 8, 8), rgb(200, 20, 20));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  background: linear-gradient(135deg, #2506ad, #4a0fd1);
  box-shadow: 0px 10px 30px rgba(48, 68, 247, 0.4), 0px 4px 12px rgba(48, 68, 247, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-family: "Nunito", sans-serif;
  position: relative;
  overflow: hidden;
}
.home .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.home .btn:hover::before {
  left: 100%;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: 1;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.home .btn:hover {
  background: linear-gradient(135deg, #1a047e, #3a0ba8);
  box-shadow: 0px 15px 40px rgba(48, 68, 247, 0.5), 0px 6px 15px rgba(48, 68, 247, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.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%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(9, 1, 27, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.social-icons a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}
.social-icons a:hover::before {
  width: 100%;
  height: 100%;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(6, 133, 218, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.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.linktree: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: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}
.about .row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img {
  margin: 4rem;
  width: 30rem;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  mix-blend-mode: luminosity;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.about .row .image img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.about .row .image img:hover {
  mix-blend-mode: normal;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.5;
}
.about .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
  line-height: 1.7;
  color: #444;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  margin-top: 2rem;
}
.about .row .content .box-container .box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about .row .content .box-container .box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.about .row .content .box-container .box p {
  text-transform: none;
  font-size: 1.6rem;
}
.about .row .content .box-container .box p span {
  color: #011aff;
  font-weight: 700;
}
.resumebtn {
  margin-top: 0.5rem;
}
.resumebtn .btn {
  padding: 1.7rem 2rem;
  border-radius: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  background: linear-gradient(135deg, #2506ad, #4a0fd1);
  box-shadow: 0px 10px 30px rgba(48, 68, 247, 0.4), 0px 4px 12px rgba(48, 68, 247, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-family: "Nunito", sans-serif;
  position: relative;
  overflow: hidden;
}
.resumebtn .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.resumebtn .btn:hover::before {
  left: 100%;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: 1;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.resumebtn .btn:hover {
  background: linear-gradient(135deg, #1a047e, #3a0ba8);
  box-shadow: 0px 15px 40px rgba(48, 68, 247, 0.5), 0px 6px 15px rgba(48, 68, 247, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.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%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 3rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
/* about media queries ends*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Pacifico&family=Fira+Sans:wght@300;400;500&family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;700&display=swap');
.about .content .title {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #e67e22;
    text-align: center;
    margin-bottom: 5px;
}

.about .content .tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    color: #2980b9;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}

.content-container {
    text-align: center;
    margin-top: 50px;
}

.title, .tag {
    font-size: 24px;
    font-weight: bold;
}

.about .content-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about .content .info {
    border-radius: 1.2rem;
    padding: 1.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1em;
    text-align:justify;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.about .content .info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    pointer-events: none;
}

.about .content .info:hover::before {
    left: 100%;
}

.about .content .info:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about .content .info-1 {
    font-family: 'Roboto', sans-serif;
    color: #FF5733;
    background-color: #FFF3E0;
}

.about .content .info-2 {
    font-family: 'Pacifico', cursive;
    color: #8E44AD;
    background-color: #F5EAFB;
}

.about .content .info-3 {
    font-family: 'Fira Sans', sans-serif;
    color: #3498DB;
    background-color: #EBF5FB;
}

.about .content .info-4 {
    font-family: 'Playfair Display', serif;
    color: #27AE60;
    background-color: #E9F7EF;
}

.about .content .info-5 {
    font-family: 'Montserrat', sans-serif;
    color: #F1C40F;
    background-color: #FEF9E7;
}

.about .content .info-6 {
    font-family: 'Roboto', sans-serif;
    color: #E74C3C;
    background-color: #FDEDEC;
}

.about .content .info-7 {
    font-family: 'Pacifico', cursive;
    color: #16A085;
    background-color: #E8F8F5;
}

.about .content .info-8 {
    font-family: 'Fira Sans', sans-serif;
    color: #2C3E50;
    background-color: #EBF5FB;
}

.about .content .info-9 {
    font-family: 'Playfair Display', serif;
    color: #D35400;
    background-color: #FEF5E7;
}

.about .content .info-10 {
    font-family: 'Montserrat', sans-serif;
    color: #8E44AD;
    background-color: #F5EEF8;
}

.about .content .info-11 {
    font-family: 'Roboto', sans-serif;
    color: #2980B9;
    background-color: #EBF5FB;
}

.about .content .info-12 {
    font-family: 'Pacifico', cursive;
    color: #27AE60;
    background-color: #E9F7EF;
}

.about .content .info-13 {
    font-family: 'Fira Sans', sans-serif;
    color: #F39C12;
    background-color: #FEF9E7;
}

.about .content .info a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

.about .content .info a:hover {
    text-decoration: underline;
}
/* about section ends */

/* education section starts */
.education {
  background: linear-gradient(135deg, #e5ecfb 0%, #d0d9f0 100%);
  min-height: 80vh;
}
.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;
  width: 80%;
  border-radius: 1.5rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-align: center;
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.education .box-container .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.education .box-container .box:hover::before {
  opacity: 1;
}
.education .box-container .box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 22px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.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;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  line-height: 1.3;
}
.education .box-container .box .content p {
  font-size: 1.5rem;
  margin-left: 1rem;
  text-align: left;
  line-height: 1.6;
  color: #555;
}
.education h4 {
  font-size: 2rem;
  color: rgb(34, 109, 0);
  text-align: left;
  margin: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 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: linear-gradient(135deg, #000031 0%, #00002c 50%, #000027 100%);
}
.work h2 {
  color: #fff;
  padding: 1rem;
}
.work .heading span {
  color: rgb(255, 230, 0);
}
.work .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.work .box-container .box {
  flex: 1 1 30rem;
  border-radius: 2rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  height: 30rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.work .box-container .box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}
.work .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.work .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}
.work .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  width: 100%;
  padding-left: 1rem;
  background: linear-gradient(135deg, #ffd900 0%, #ffed4e 100%);
  box-shadow: 0 2px 8px rgba(255, 217, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.work .box-container .box .content .tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}
.work .box-container .box:hover .content .tag::before {
  left: 100%;
}
.work .box-container .box .content .tag h3 {
  font-size: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.work .box-container .box:hover .content {
  top: 25%;
}
.work .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work .desc p {
  font-size: 1.5rem;
}
.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.5rem 2.5rem;
  border-radius: 1.2rem;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, rgb(12, 12, 12), rgb(30, 30, 30));
  margin-right: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.work .desc .btns .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}
.work .desc .btns .btn:hover::before {
  left: 100%;
}
.work .desc .btns .btn:hover {
  background: linear-gradient(135deg, #310ae0f5, #5020ff);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(49, 10, 224, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.work .viewall {
  display: flex;
  justify-content: center;
}
.work .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 1.5em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.25));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0px 10px 30px rgba(65, 84, 241, 0.35), 0px 4px 12px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-align: center;
  overflow: hidden;
}
.work .viewall .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.work .viewall .btn:hover::before {
  left: 100%;
}
.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: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.5));
  color: #000;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 15px 40px rgba(65, 84, 241, 0.5), 0px 6px 15px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.work .viewall .btn:hover i {
  transform: translateX(5px);
}
/* work section ends */

/* experience section starts */
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
/*circles on timeline*/
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background: linear-gradient(135deg, rgb(255, 255, 255), rgb(245, 245, 255));
  border: 4px solid #ff9f55;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color: #02094b;
  font-family: "Font Awesome\ 5 Free";
  box-shadow: 0 4px 15px rgba(255, 159, 85, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.experience .container:hover::after {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 159, 85, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f68c09;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f68c09;
}
/* arrows pointing left  */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background: linear-gradient(135deg, #f68c09, #ff9f2e);
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(246, 140, 9, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.experience .content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.experience .content:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 35px rgba(246, 140, 9, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.experience .content:hover::before {
  opacity: 1;
}
.experience .content .tag {
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p {
  font-size: 1.2rem;
}
/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 1.5em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  background: linear-gradient(135deg, #2506ad, #4a0fd1);
  box-shadow: 0px 10px 30px rgba(48, 68, 247, 0.4), 0px 4px 12px rgba(48, 68, 247, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.morebtn .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.morebtn .btn:hover::before {
  left: 100%;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
  position: relative;
  z-index: 1;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.morebtn .btn:hover {
  background: linear-gradient(135deg, #1a047e, #3a0ba8);
  box-shadow: 0px 15px 40px rgba(48, 68, 247, 0.5), 0px 6px 15px rgba(48, 68, 247, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* 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;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #f68c09;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f68c09 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* achievements  section starts */
.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.row {
  display: flex;
  margin-bottom: 10px;
}

.image-container img {
  width: 30%;
  margin-right: 10px;
  border-radius: 15px; /* Adjust the value to control the roundness */
}
.content-container {
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hackathon-info {
  margin-bottom: 20px;
}

.hackathon-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hackathon-info ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.hackathon-info li {
  font-size: 15px;
  margin-bottom: 10px;
}

.project-highlight h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.project-highlight p {
  margin: 0;
}
.achievements  {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}
  .achievements  .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
  }
  .achievements  .row .image {
  text-align: center;
  flex: 1 1 35rem;
  }
  .achievements  .row .image img {
  margin: 4rem;
  width: 30rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  mix-blend-mode: luminosity;
  transition: 0.3s;
  cursor: pointer;
  }
  .achievements  .row .image img:hover {
  mix-blend-mode: normal;
  }
  .achievements  .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
  }
  .achievements  .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
  }
  .achievements  .row .content .tag {
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
  }
  .achievements  .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
  }
  .achievements  .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  }
  .achievements  .row .content .box-container .box p {
  text-transform: none;
  }
  .achievements  .row .content .box-container .box p span {
  color: #011aff;
  }
  .resumebtn {
  margin-top: 6rem;
  }
  .resumebtn .btn {
  padding: 1.7rem 3rem;
  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;
  }
  .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);
  }
  /* achievements  media queries starts*/
  @media screen and (max-width: 600px) {
  .achievements  .row .image {
  margin-top: 2rem;
  }
  .achievements  .row .image img {
  margin: 0 auto;
  width: 80%;
  mix-blend-mode: normal;
  }
  .achievements  .row {
  padding: 0.5rem;
  margin-bottom: 7rem;
  }
  .achievements  .row .content {
  padding: 1rem;
  }
  .achievements  .row .content .box-container {
  gap: 0;
  }
  }
  /* achievements  media queries ends*/




/* Base styles for the Achievements section */
.achievements {
    padding: 20px;
    text-align: center;
}

.achievements .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.achievements .image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.achievements .tilt {
    width: 30%;
    margin: 10px;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
}
.achievements .tilt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.achievements .tilt:hover::before {
    opacity: 1;
}
.achievements .tilt:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2), 0 6px 18px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Media Queries for Mobile Devices */
@media only screen and (max-width: 768px) {
    .achievements .tilt {
        width: 45%; /* Two images per row on medium-sized screens */
        margin: 5px;
    }

    .achievements .row {
        justify-content: space-around; /* Center images with space around */
    }
}

@media only screen and (max-width: 480px) {
    .achievements .tilt {
        width: 90%; /* One image per row on small screens */
        margin: 10px 0;
    }

    .achievements .row {
        flex-direction: column; /* Stack images vertically */
        align-items: center;
    }
}

.special-section {
    font-family: 'Poppins', sans-serif;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 255, 0.9));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 2rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 100%;
    margin: auto;
    margin-top: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.special-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.special-section .content {
    max-width: 100%;
    margin: auto;
}

.special-section .hackathon-info h2,
.special-section .project-highlight h3 {
    color: #00796b;
    margin-bottom: 15px;
    letter-spacing: 1.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.special-section .hackathon-info h2:hover,
.special-section .project-highlight h3:hover {
    color: #004d40;
    transform: translateX(5px);
    text-shadow: 0 2px 8px rgba(0, 121, 107, 0.2);
}

.special-section .hackathon-info ul {
    list-style: none;
    padding: 0;
}

.special-section .hackathon-info ul li {
    background: linear-gradient(135deg, #b2dfdb, #c8e8e5);
    margin-bottom: 10px;
    padding: 1.5rem 2rem;
    border-radius: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    max-width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 121, 107, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}
.special-section .hackathon-info ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    pointer-events: none;
}
.special-section .hackathon-info ul li:hover::after {
    left: 100%;
}
.special-section .hackathon-info ul li:hover {
    background: linear-gradient(135deg, #80cbc4, #a0ddd8);
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 121, 107, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.special-section .hackathon-info ul li::before {
    content: "✔️";
    margin-right: 10px;
    color: #004d40;
}

.special-section .project-highlight {
    margin-top: 20px;
}

.special-section .achievement {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 100%;
    transition: transform 0.3s;
}

.special-section .achievement:hover {
    transform: scale(1.05);
}

.special-section a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 2px;
}
.special-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00796b, #004d40);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.special-section a:hover {
    color: #004d40;
    text-shadow: 0 1px 2px rgba(0, 121, 107, 0.2);
}
.special-section a:hover::after {
    width: 100%;
}

/* achievements  section ends */

/* research */

.publications {
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.publications .heading {
    text-align: center;
    font-size: 3.8em;
    color: #00796b;
    margin-bottom: 20px;
}

.publication {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08), 0 6px 18px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    margin-bottom: 30px;
    text-align: justify;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.publication:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.publication h2 {
    font-size: 24px;
    color: #00796b;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    line-height: 1.4;
}

.publication p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.publication a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}
.publication a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00796b;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.publication a:hover {
    color: #004d40;
    text-shadow: 0 1px 2px rgba(0, 121, 107, 0.2);
}
.publication a:hover::after {
    width: 100%;
}

/* research */

.pdf-container .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pdf-embed {
  width: 550px;  
  height: 450px; 
  margin: 0 15px; 
  border: 1px solid #ccc;
}

.certifications {
  padding: 20px;
  text-align: center;
}

.certifications .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.certifications .pdf-container {
  width: 100%;
}

/* Media Queries for Mobile Devices */
@media only screen and (max-width: 768px) {
  .certifications .pdf-embed {
    width: 90%; 
    height: auto;
  }

  .certifications .row {
    flex-direction: column;
    align-items: center;
  }
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 768px) {
    .pdf-container {
        height: 80vh; /* Adjust container height for mobile devices */
    }
}

/* contact section starts */
.contact {
  background: linear-gradient(135deg, #e5ecfb 0%, #d0d9f0 100%);
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 2rem;
  margin: 2rem 5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}
.contact .container:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 10px 28px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.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: 1.2rem;
  border: 2px solid rgba(51, 51, 51, 0.2);
  background: rgba(229, 236, 251, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgba(51, 51, 51, 0.6);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
  background: rgba(229, 236, 251, 0.9);
  box-shadow: 0 4px 15px rgba(115, 3, 167, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.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: 1.2rem;
  padding: 13px 25px;
  background: linear-gradient(135deg, #2506ad, #4a0fd1);
  box-shadow: 0px 10px 30px rgba(48, 68, 247, 0.4), 0px 4px 12px rgba(48, 68, 247, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Nunito", sans-serif;
  position: relative;
  overflow: hidden;
}
.button-area button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.button-area button:hover::before {
  left: 100%;
}
.button-area button:hover {
  background: linear-gradient(135deg, #421cecf5, #5a2ae8);
  box-shadow: 0px 15px 40px rgba(48, 68, 247, 0.5), 0px 6px 15px rgba(48, 68, 247, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.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: linear-gradient(135deg, #000043 0%, #00002f 100%);
}
.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;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}
.footer .box-container .box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ffae00, transparent);
}
.footer .box-container .box p {
  font-size: 1.5rem;
  color: #ccc;
  padding: 0.7rem 0;
  text-transform: none;
  line-height: 1.6;
}
.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;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 1.5rem;
}
.footer .box-container .box a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #ffae00;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .box-container .box a:hover {
  color: #ffae00;
  padding-left: 2rem;
  text-shadow: 0 2px 4px rgba(255, 174, 0, 0.3);
}
.footer .box-container .box a:hover::before {
  width: 1rem;
}
.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: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.footer .box-container .box .share a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 174, 0, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}
.footer .box-container .box .share a:hover::before {
  width: 100%;
  height: 100%;
}
.footer .box-container .box .share a:hover {
  background: rgba(255, 174, 0, 0.1);
  transform: translateY(-4px) scale(1.05);
  border: 0.1rem solid rgba(255, 174, 0, 0.5);
  color: #ffae00;
  box-shadow: 0 8px 25px rgba(255, 174, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.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;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.footer .credit a {
  color: #ffae00;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}
.footer .credit a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffae00;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .credit a:hover {
  text-shadow: 0 2px 8px rgba(255, 174, 0, 0.5);
}
.footer .credit a:hover::after {
  width: 100%;
}
.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: linear-gradient(135deg, #ffae00, #ff9500);
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(255, 174, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
#scroll-top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s;
}
#scroll-top:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
#scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 174, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */

/* P6d6b */
.experience .container {
  padding: 10px 20px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 2rem;
}

.publications .publication {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  text-align: justify;
}

/* Pbb56 */
.experience .container {
  padding: 10px 20px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 2rem;
}

.publications .publication {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  text-align: justify;
}

/* P5ac6 */
@media (max-width: 768px) {
  .experience .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .publications .publication {
    width: 100%;
    padding: 15px;
  }
}
