@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;
  width: 100%;
}
body {
  background: #04060d;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

*::selection {
  background: #00d2ff;
  color: #04060d;
}

/* 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.5rem 9%;
  height: 6.8rem;
  background: rgba(4, 6, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 210, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: #a855f7;
}
header .logo {
  font-size: 2.2rem;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: all 0.3s ease;
}
header .logo .logo-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  display: block;
}
header .logo:hover .logo-icon-img {
  transform: rotate(60deg) scale(1.1);
}
header .logo:hover {
  color: #00d2ff;
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
header .navbar li {
  margin: 0;
}
header .navbar ul li a {
  font-size: 1.45rem;
  color: #cbd5e1;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03rem;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  position: relative;
}
header .navbar ul li a:hover {
  color: #00d2ff;
  background: rgba(0, 210, 255, 0.08);
}
header .navbar ul li a.active {
  color: #00d2ff;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.35);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 2.6rem;
  cursor: pointer;
  color: #00d2ff;
  display: none;
  transition: all 0.3s ease;
}
#menu:hover {
  filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.8));
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.8rem;
    right: -120%;
    width: 75%;
    height: calc(100vh - 6.8rem);
    text-align: left;
    align-items: flex-start;
    background: rgba(7, 12, 28, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  header .navbar ul {
    flex-flow: column;
    padding: 2rem 1.5rem;
    width: 100%;
    align-items: stretch;
  }
  header .navbar ul li {
    text-align: left;
    width: 100%;
    margin: 0.4rem 0;
  }
  header .navbar ul li a {
    display: block;
    padding: 1.2rem 1.6rem;
    text-align: left;
    color: #cbd5e1;
    font-size: 1.6rem;
    border-radius: 12px;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1.2rem 1.6rem;
    color: #00d2ff;
    background: rgba(0, 210, 255, 0.15);
    border: 1px solid rgba(0, 210, 255, 0.4);
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
  background: radial-gradient(circle at 75% 45%, #19004f 0%, #08001d 55%, #02000c 100%);
  overflow: hidden;
}
.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 45rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* AI Models Orbit System */
.ai-orbit-system {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
}

/* Central Floating AI Bot */
.ai-orbit-center {
  position: absolute;
  width: 135px;
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: floatBot 3.8s ease-in-out infinite alternate;
}
.ai-orbit-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.7))
    drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ai-orbit-center:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 35px rgba(0, 242, 254, 0.95))
    drop-shadow(0 0 60px rgba(168, 85, 247, 0.6));
}
@keyframes floatBot {
  0% {
    transform: translateY(0px) scale(0.97);
  }
  100% {
    transform: translateY(-12px) scale(1.03);
  }
}

/* Orbit Rings */
.ai-orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ai-orbit-ring.ring-1 {
  width: 290px;
  height: 290px;
  border: 1.5px dashed rgba(0, 242, 254, 0.4);
  animation: rotateOrbit1 20s linear infinite;
}
.ai-orbit-ring.ring-2 {
  width: 440px;
  height: 440px;
  border: 1.5px dashed rgba(168, 85, 247, 0.35);
  animation: rotateOrbit2 28s linear infinite;
}

.ai-orbit-system:hover .ring-1,
.ai-orbit-system:hover .ring-2,
.ai-orbit-system:hover .ai-model-badge {
  animation-play-state: paused;
}

/* Orbit Rotation Keyframes */
@keyframes rotateOrbit1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateOrbit2 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* Model Badges */
.ai-model-badge {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ai-model-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ai-model-badge:hover {
  transform: scale(1.3) !important;
  border-color: #00f2fe;
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.9), 0 0 50px rgba(168, 85, 247, 0.7);
  z-index: 100;
}

/* Tooltip on Model */
.model-tooltip {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(4, 8, 30, 0.95);
  color: #00f2fe;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  border: 1px solid rgba(0, 242, 254, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.ai-model-badge:hover .model-tooltip {
  opacity: 1;
}

/* Positioning Badges in Ring 1 & Counter Rotation */
.ring-1 .model-top {
  top: -26px;
  left: calc(50% - 26px);
  animation: counterRotate1 20s linear infinite;
}
.ring-1 .model-right {
  top: calc(50% - 26px);
  right: -26px;
  animation: counterRotate1 20s linear infinite;
}
.ring-1 .model-bottom {
  bottom: -26px;
  left: calc(50% - 26px);
  animation: counterRotate1 20s linear infinite;
}
.ring-1 .model-left {
  top: calc(50% - 26px);
  left: -26px;
  animation: counterRotate1 20s linear infinite;
}
@keyframes counterRotate1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Positioning Badges in Ring 2 & Counter Rotation */
.ring-2 .model-tr {
  top: 25px;
  right: 58px;
  animation: counterRotate2 28s linear infinite;
}
.ring-2 .model-br {
  bottom: 30px;
  right: 58px;
  animation: counterRotate2 28s linear infinite;
}
.ring-2 .model-bl {
  bottom: 30px;
  left: 58px;
  animation: counterRotate2 28s linear infinite;
}
.ring-2 .model-tl {
  top: 25px;
  left: 58px;
  animation: counterRotate2 28s linear infinite;
}
@keyframes counterRotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive scaling for Orbit */
@media screen and (max-width: 600px) {
  .ai-orbit-system {
    transform: scale(0.68);
    margin: -4rem auto;
  }
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
}
.home .content h2 span {
  font-size: inherit;
  font-weight: 800;
  color: #ffae00;
}
.home .content p {
  font-size: 2.4rem;
  color: #e2e8f0;
  font-weight: 600;
  padding: 0.5rem 0 1.6rem;
  margin: 0;
}
.home .content p span {
  font-size: inherit;
  color: #00f2fe;
  font-weight: 700;
  padding: 0;
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.6);
}
.home .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 3.2rem;
  border-radius: 4em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #fff;
  background: linear-gradient(135deg, #2506ad 0%, #4a00e0 100%);
  box-shadow: 0px 8px 25px rgba(74, 0, 224, 0.55);
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  position: static;
  margin-top: 0.8rem;
  width: fit-content;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.05rem;
}
.home .btn i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.home .btn:hover {
  background: linear-gradient(135deg, #1a047e 0%, #3700b3 100%);
  box-shadow: 0px 10px 30px rgba(0, 242, 254, 0.55);
  transform: translateY(-3px);
}
.home .btn:hover i {
  transform: translateY(3px);
}
/* social icons start */
.socials {
  position: static;
  margin-top: 2.5rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.socials .social-icons li {
  display: inline-block;
  margin: 0;
}
.social-icons a {
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  background-color: rgba(13, 20, 48, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.3);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.social-icons a:hover {
  color: #04060d;
  background-color: #00d2ff;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.8);
  transform: translateY(-4px) scale(1.1);
  border-color: #00d2ff;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 991px) {
  .home {
    padding: 10rem 5% 6rem;
    flex-direction: column !important;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    gap: 0;
  }
  .home .content {
    flex: none !important;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1 !important;
    padding-top: 0;
    margin: 0 auto;
  }
  .home .content h2 {
    font-size: clamp(2.8rem, 6.5vw, 4.2rem);
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }
  .home .content p {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
  }
  .home .btn {
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .socials {
    margin-top: 2.2rem;
    margin-bottom: 0;
  }
  .socials .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }
  .home .image {
    flex: none !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2 !important;
    margin: 5.5rem auto 2rem;
    min-height: 320px;
    padding-top: 1rem;
  }
  .ai-orbit-system {
    width: 290px;
    height: 290px;
    max-width: 85vw;
    max-height: 85vw;
    margin: 0 auto;
    transform: scale(0.85);
  }
}

@media (max-width: 480px) {
  .home {
    padding: 8.5rem 4% 5rem;
  }
  .home .content h2 {
    font-size: 2.6rem;
  }
  .home .content p {
    font-size: 1.55rem;
  }
  .socials {
    margin-top: 1.8rem;
  }
  .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }
  .home .image {
    min-height: 280px;
    margin: 5rem auto 1.5rem;
    padding-top: 1.5rem;
  }
  .ai-orbit-system {
    width: 250px;
    height: 250px;
    max-width: 80vw;
    max-height: 80vw;
    transform: scale(0.75);
  }
}
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  background: linear-gradient(180deg, #070a14 0%, #0c1122 50%, #070a14 100%);
  padding-bottom: 7rem;
  padding-top: 4rem;
  position: relative;
}
.about .heading {
  font-size: 3.8rem;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
}
.about .heading i {
  color: #00d2ff;
  margin-right: 0.8rem;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.7));
}
.about .heading span {
  color: #a855f7;
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.6);
}
.about .row {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem 8%;
  align-items: center;
  justify-content: center;
}
.about .row .image {
  text-align: center;
  flex: 1 1 36rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Professional Photo Card */
.about-photo-card {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  padding: 5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(0, 210, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 210, 255, 0.12);
  transition: all 0.4s ease;
  cursor: pointer;
}
.about-photo-card img {
  width: 30rem;
  height: 40rem;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.about-photo-card:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 210, 255, 0.25);
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.4);
}

/* Content Column */
.about .row .content {
  flex: 1 1 52rem;
  padding: 1rem 0;
}
.about .row .content h3 {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02rem;
}
.about .row .content h3 span {
  color: #00d2ff;
}

/* Tag Badge */
.about .row .content .tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  color: #00d2ff;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  padding: 0.5rem 1.4rem;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: 0.02rem;
}
.about .row .content .tag-badge i {
  font-size: 1.3rem;
}

/* Bio */
.about .row .content .about-bio {
  font-size: 1.55rem;
  line-height: 1.85;
  color: #cbd5e1;
  margin-top: 1.8rem;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
}
.about .row .content .about-bio strong {
  color: #ffffff;
  font-weight: 700;
}

/* Info Cards Grid */
.about .row .content .box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.about .row .content .info-card {
  background: rgba(13, 20, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  min-width: 0;
}
.about .row .content .info-card:hover {
  border-color: rgba(0, 210, 255, 0.35);
  background: rgba(13, 20, 42, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}
.about .row .content .info-card .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 210, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.about .row .content .info-card .info-text span {
  display: block;
  font-size: 1.15rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}
.about .row .content .info-card .info-text p {
  font-size: 1.3rem;
  color: #f1f5f9;
  font-weight: 700;
  margin-top: 0.2rem;
  text-transform: none;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Resume Button */
.resumebtn {
  margin-top: 3rem;
}
.resumebtn .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 3.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  font-family: "Nunito", sans-serif;
  text-decoration: none;
}
.resumebtn .btn span {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04rem;
}
.resumebtn .btn i {
  font-size: 1.3rem;
  transition: transform 0.3s;
}
.resumebtn .btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}
.resumebtn .btn:hover i {
  transform: translateX(4px);
}

/* about media queries starts*/
@media screen and (max-width: 900px) {
  .about .row {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
  }
  .about .row .image {
    margin-top: 0;
    display: flex;
    justify-content: center;
  }
  .about-photo-card img {
    width: min(280px, 80vw);
    height: auto;
    aspect-ratio: 3/4;
  }
  .about .row .content {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about .row .content h3 {
    font-size: 2.6rem;
  }
  .about .row .content .tag-badge {
    margin: 1rem auto 0;
  }
  .about .row .content .about-bio {
    text-align: left;
    font-size: 1.45rem;
  }
  .about .row .content .box-container {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .resumebtn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .about {
    padding: 3.5rem 4%;
  }
  .about .row {
    padding: 2rem 1.2rem;
  }
  .about .row .content h3 {
    font-size: 2.2rem;
  }
  .about .row .content .about-bio {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .about .row .content .box-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about .row .content .info-card {
    padding: 0.85rem 1rem;
    gap: 0.9rem;
  }
  .about .row .content .info-card .info-icon {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
  .about .row .content .info-card .info-text p {
    font-size: 1.15rem;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-transform: none;
  }
}
/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  min-height: 90vh;
  background: radial-gradient(circle at 50% 30%, #15003f 0%, #06001a 100%);
  padding: 5rem 9%;
  position: relative;
  overflow: hidden;
}
.skills .heading {
  color: #fff;
  font-size: 3.5rem;
}
.skills .heading span {
  color: #ffae00;
}
.skills-subtitle {
  text-align: center;
  color: #94a3b8;
  font-size: 1.35rem;
  letter-spacing: 0.35rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 1.2rem 0 3.5rem 0;
  font-family: "Poppins", sans-serif;
  animation: pulseSubtitle 3s ease-in-out infinite alternate;
}
@keyframes pulseSubtitle {
  from { opacity: 0.75; transform: scale(0.99); }
  to { opacity: 1; transform: scale(1); color: #cbd5e1; }
}
.skills-container {
  max-width: 1120px;
  width: 95%;
  margin: auto;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 2.2rem;
  padding: 4.5rem 3.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3.2rem 2.4rem;
}
.skill-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 105px;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.skill-circle-card:hover {
  transform: translateY(-10px) scale(1.08);
}
.skill-circle {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #205072;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 15px;
  overflow: hidden;
}
.skill-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
}
.skill-circle-card:hover .skill-circle img {
  transform: scale(1.12);
}
.skill-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 14, 46, 0.96) 0%, rgba(2, 6, 26, 0.98) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4) rotate(-30deg);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.3);
}
.skill-circle-card:hover .skill-circle {
  border-color: #00f2fe;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.65), 0 12px 30px rgba(0, 0, 0, 0.5);
}
.skill-circle-card:hover .skill-overlay {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.skill-percent {
  color: #00f2fe;
  font-size: 1.9rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05rem;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.7);
}
.skill-name {
  color: #e2e8f0;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  word-break: break-word;
  font-family: "Poppins", sans-serif;
  text-transform: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  line-height: 1.35;
}
.skill-circle-card:hover .skill-name {
  color: #00f2fe;
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.6);
}

/* skills media queries starts*/
@media screen and (max-width: 768px) {
  .skills-container {
    padding: 2.5rem 1.5rem;
    width: 98%;
  }
  .skills-grid {
    gap: 2.5rem 1.6rem;
  }
  .skill-circle-card {
    width: 88px;
    gap: 0.7rem;
  }
  .skill-circle {
    width: 76px;
    height: 76px;
    padding: 12px;
  }
  .skill-percent {
    font-size: 1.6rem;
  }
  .skill-name {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .skills-grid {
    gap: 2rem 1.2rem;
  }
  .skill-circle-card {
    width: 78px;
  }
  .skill-circle {
    width: 68px;
    height: 68px;
    padding: 10px;
  }
  .skills-subtitle {
    font-size: 1.15rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
  }
}
/* skills media queries ends*/
/* skills section ends */

/* education section starts */
.education {
  background: linear-gradient(180deg, #070a14 0%, #0c1122 50%, #070a14 100%);
  min-height: 80vh;
  padding: 5rem 9%;
  position: relative;
}
.education .heading,
.certifications .heading {
  font-size: 3.8rem;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.8rem;
}
.education .heading i,
.certifications .heading i {
  color: #00d2ff;
  margin-right: 0.8rem;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.7));
}
.education .heading span,
.certifications .heading span {
  color: #a855f7;
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.6);
}
.education .qoute,
.certifications .qoute {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 3.5rem;
  letter-spacing: 0.04rem;
}
.education .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Education Cards (Vertical Grid Layout) */
.edu-card {
  display: flex;
  flex-direction: column;
  background: rgba(13, 20, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  padding: 1.6rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}
.edu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 210, 255, 0.15);
}
.edu-image {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.4rem;
}
.edu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.edu-card:hover .edu-image img {
  transform: scale(1.05);
}
.edu-content {
  padding: 0.5rem;
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.edu-content h3 {
  font-size: 2.1rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01rem;
  line-height: 1.35;
}
.edu-inst {
  font-size: 1.45rem;
  color: #94a3b8;
  margin: 0.6rem 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.edu-inst i {
  color: #00d2ff;
}
.edu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.edu-year {
  color: #cbd5e1;
  font-size: 1.35rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.edu-cgpa {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  padding: 0.35rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Certifications Section (3-Column Grid) */
.certifications {
  background: linear-gradient(180deg, #0c1122 0%, #070a14 100%);
  min-height: 80vh;
  padding: 5rem 9%;
  position: relative;
}
.certifications .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.8rem;
  max-width: 1150px;
  margin: 0 auto;
}
.cert-card {
  display: flex;
  flex-direction: column;
  background: rgba(13, 20, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  padding: 1.8rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}
.cert-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 85, 247, 0.15);
}
.cert-logo-box {
  width: 100%;
  height: 110px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  transition: transform 0.35s ease;
}
.cert-card:hover .cert-logo-box {
  transform: scale(1.03);
}
.cert-logo-box img {
  max-height: 65px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s ease;
}
.cert-card:hover .cert-logo-box img {
  transform: scale(1.08);
}
.cert-content {
  padding: 0.5rem;
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.cert-content h3 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.35;
  min-height: 5.2rem;
}
.cert-issuer,
.cert-desc {
  font-size: 1.4rem;
  color: #94a3b8;
  margin: 0.6rem 0 1.5rem;
  line-height: 1.6;
  min-height: 4.5rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.3rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.25rem;
  width: fit-content;
  margin-top: auto;
}
.cert-badge.verified {
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: #00d2ff;
}
.cert-badge.score {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

/* education media queries starts*/
@media screen and (max-width: 768px) {
  .education .box-container,
  .certifications .box-container {
    grid-template-columns: 1fr;
  }
  .edu-image {
    height: 170px;
  }
}
/* education media queries ends*/
/* education section ends */

/* work section starts */
.work {
  background: linear-gradient(180deg, #070a14 0%, #0b0f1d 50%, #070a14 100%);
  padding: 5rem 9%;
  min-height: 80vh;
}
.work .heading,
.experience .heading,
.contact .heading {
  font-size: 3.8rem;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}
.work .heading i,
.experience .heading i,
.contact .heading i {
  color: #00d2ff;
  margin-right: 0.8rem;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.7));
}
.work .heading span,
.experience .heading span,
.contact .heading span {
  color: #a855f7;
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.6);
}
.work .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 2.5rem;
  margin: 2rem 0 4rem;
}
.work .box-container .box {
  background: rgba(13, 20, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  height: 38rem;
}
.work .box-container .box:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 210, 255, 0.2);
}
.work .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work .box-container .box:hover img {
  transform: scale(1.06);
}
.work .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 80%;
  left: 0;
  background: rgba(8, 14, 38, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 1px solid rgba(0, 210, 255, 0.3);
}
.work .box-container .box:hover .content {
  top: 20%;
}
.work .box-container .box .content .tag {
  display: flex;
  align-items: center;
  height: 5.5rem;
  padding: 0 1.8rem;
  background: rgba(13, 20, 48, 0.95);
}
.work .box-container .box .content .tag h3 {
  font-size: 1.8rem;
  color: #00d2ff;
  font-weight: 700;
  letter-spacing: 0.02rem;
}
.work .desc {
  padding: 1.8rem;
  overflow-y: auto;
}
.work .desc p {
  font-size: 1.4rem;
  color: #cbd5e1;
  line-height: 1.6;
}
.work .viewall,
.morebtn {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.work .viewall .btn,
.morebtn .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 3.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
}
.work .viewall .btn:hover,
.morebtn .btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}
/* work section ends */

/* experience section starts */
.experience {
  background: linear-gradient(180deg, #070a14 0%, #0c1122 50%, #070a14 100%);
  padding: 5rem 9%;
  min-height: 80vh;
}
.experience .timeline {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background: linear-gradient(180deg, #00d2ff 0%, #a855f7 100%);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
  z-index: 1;
}
.experience .container {
  padding: 15px 40px;
  position: relative;
  width: 50%;
  z-index: 2;
}
.experience .container::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background: #00d2ff;
  border: 3px solid #070a14;
  box-shadow: 0 0 15px #00d2ff;
  top: 28px;
  border-radius: 50%;
  z-index: 10;
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
.experience .right::after {
  left: -9px;
}
.experience .content {
  background: rgba(13, 20, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  padding: 2rem 2.4rem;
  transition: all 0.35s ease;
}
.experience .content:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 210, 255, 0.2);
}
.exp-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.exp-logo-box {
  width: 70px;
  height: 50px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
}
.exp-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.exp-title-group {
  flex: 1;
}
.exp-title-group h2 {
  font-size: 1.85rem;
  color: #ffffff;
  font-weight: 700;
}
.exp-meta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.exp-meta-row h3 {
  font-size: 1.55rem;
  color: #00d2ff;
  font-weight: 700;
}
.exp-badge {
  font-size: 1.2rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.exp-badge.current {
  background: rgba(0, 210, 255, 0.12);
  border-color: rgba(0, 210, 255, 0.35);
  color: #00d2ff;
}
.experience .desc ul {
  padding-left: 1.8rem;
  margin-top: 0.5rem;
}
.experience .desc li {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 0.8rem;
  text-transform: none;
}
.experience .desc li strong {
  color: #ffffff;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .experience {
    padding: 4rem 4%;
  }
  .experience .timeline {
    margin: 2rem auto;
  }
  .experience .timeline::after {
    left: 20px;
  }
  .experience .container {
    width: 100%;
    padding-left: 45px;
    padding-right: 0;
    margin-bottom: 2.2rem;
    left: 0 !important;
  }
  .experience .container::after {
    left: 11px !important;
    top: 24px;
    width: 18px;
    height: 18px;
  }
  .experience .container::before {
    display: none;
  }
  .experience .left,
  .experience .right {
    left: 0 !important;
  }
  .experience .content {
    padding: 1.6rem 1.8rem;
    border-radius: 16px;
    width: 100%;
  }
  .exp-header {
    gap: 1.2rem;
  }
  .exp-logo-box {
    width: 60px;
    height: 45px;
  }
  .exp-title-group h2 {
    font-size: 1.7rem;
  }
  .exp-meta-row h3 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  .experience .container {
    padding-left: 38px;
  }
  .experience .timeline::after {
    left: 14px;
  }
  .experience .container::after {
    left: 5px !important;
    width: 16px;
    height: 16px;
    top: 22px;
  }
  .experience .content {
    padding: 1.3rem 1.4rem;
  }
  .exp-logo-box {
    width: 50px;
    height: 38px;
  }
  .exp-title-group h2 {
    font-size: 1.5rem;
  }
  .exp-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .experience .desc li {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
/* experience media queries ends */
/* experience section ends */

/* contact section starts */
.contact {
  background: linear-gradient(180deg, #070a14 0%, #0c1122 100%);
  min-height: 60vh;
  padding: 5rem 9%;
}
.contact .container {
  max-width: 1080px;
  margin: 2rem auto;
}
.contact .container .content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: stretch;
  background: rgba(13, 20, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  padding: 3.5rem;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-panel h3 {
  font-size: 2.4rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.3;
}
.contact-info-panel h3 span {
  color: #a855f7;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}
.contact-sub {
  font-size: 1.45rem;
  color: #94a3b8;
  margin: 1rem 0 2.2rem;
  line-height: 1.6;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.method-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  transition: all 0.3s ease;
}
.method-card:hover {
  background: rgba(0, 210, 255, 0.08);
  border-color: rgba(0, 210, 255, 0.35);
  transform: translateX(5px);
}
.method-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 210, 255, 0.12);
  color: #00d2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.method-text span {
  display: block;
  font-size: 1.15rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.method-text a,
.method-text p {
  font-size: 1.4rem;
  color: #f1f5f9;
  font-weight: 600;
  text-decoration: none;
  margin: 0;
  text-transform: none;
}
.method-text a:hover {
  color: #00d2ff;
}

.contact .content form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  width: 100%;
}
.form-group .field i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 12, 28, 0.85);
  color: #ffffff;
  transition: all 0.3s ease;
}
.field input::placeholder,
.message textarea::placeholder {
  color: #64748b;
}
.field input:focus,
.message textarea:focus {
  border-color: #00d2ff;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: #00d2ff;
}
form .message {
  position: relative;
  width: 100%;
}
.form-group .message i {
  position: absolute;
  top: 20px;
  font-size: 18px;
  left: 18px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.3s ease;
}
form .message textarea {
  min-height: 130px;
  max-height: 200px;
  padding: 14px 20px 0 48px;
  resize: vertical;
}
form .button-area {
  display: flex;
  margin-top: 1.6rem;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 12px;
  padding: 1.3rem 3.2rem;
  background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
  box-shadow: 0 8px 25px rgba(0, 114, 255, 0.35);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.button-area button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 210, 255, 0.55);
}
.button-area button i {
  position: static;
  transform: none;
  transition: transform 0.3s ease;
  color: #ffffff;
  font-size: 1.4rem;
}
.button-area button:hover i {
  transform: translateX(4px);
}

/* contact section media queries */
@media (max-width: 850px) {
  .contact .container .content {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 2rem;
  }
}

/* Contact Toast Notification */
.form-toast {
  position: fixed;
  top: 90px;
  right: 28px;
  background: rgba(6, 11, 26, 0.95);
  border: 1.5px solid #00d2ff;
  color: #ffffff;
  padding: 1.4rem 2.2rem;
  border-radius: 16px;
  font-size: 1.45rem;
  font-weight: 600;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 210, 255, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000000;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transform: translateX(130%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: calc(100vw - 40px);
  font-family: "Poppins", sans-serif;
  text-transform: none;
}
.form-toast.show {
  transform: translateX(0);
}
.form-toast.success {
  border-color: #10b981;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(16, 185, 129, 0.4);
}
.form-toast.success i {
  color: #10b981;
  font-size: 1.8rem;
}
.form-toast.error {
  border-color: #ef4444;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(239, 68, 68, 0.4);
}
.form-toast.error i {
  color: #ef4444;
  font-size: 1.8rem;
}
.form-toast.info {
  border-color: #00d2ff;
}
.form-toast.info i {
  color: #00d2ff;
  font-size: 1.8rem;
}

@media (max-width: 480px) {
  .form-toast {
    top: 80px;
    right: 15px;
    left: 15px;
    padding: 1.2rem 1.6rem;
    font-size: 1.3rem;
  }
}

/* footer section starts */
.footer {
  min-height: auto;
  padding: 5rem 9% 2.5rem;
  background: #04060d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .box-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 4rem;
  max-width: 1150px;
  margin: 0 auto 3rem;
  text-align: left;
}
.footer .box-container .box {
  margin: 0;
}
.footer .box-container .box h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.8rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer .box-container .box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: #00d2ff;
  border-radius: 2px;
}
.footer .box-container .box p {
  font-size: 1.4rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-transform: none;
}
.footer .box-container .box p i {
  color: #00d2ff;
  margin-right: 0.8rem;
}
.footer .box-container .box a {
  font-size: 1.4rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  transition: all 0.25s ease;
  text-decoration: none;
}
.footer .box-container .box a i {
  color: #00d2ff;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
.footer .box-container .box a:hover {
  color: #ffffff;
  transform: translateX(5px);
}
.footer .box-container .box a:hover i {
  color: #a855f7;
}
.footer .box-container .box .share {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer .box-container .box .share a {
  height: 42px;
  width: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #00d2ff;
  transition: all 0.3s ease;
}
.footer .box-container .box .share a:hover {
  background: #00d2ff;
  color: #04060d;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 210, 255, 0.4);
  border-color: #00d2ff;
}
.footer .credit {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 1.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}
.footer .credit a {
  color: #00d2ff;
  font-weight: 700;
  text-decoration: none;
}
.footer .credit i {
  color: #ef4444;
  margin: 0 0.4rem;
}
@media (max-width: 768px) {
  .footer .box-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* 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*/

/* Custom Obsidian Neon Scrollbar starts */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #04060d;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00d2ff 0%, #0072ff 100%);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #38bdf8 0%, #00d2ff 100%);
}
/* Custom Obsidian Neon Scrollbar ends */

/* scroll top with circular progress ring starts */
#scroll-top {
  position: fixed;
  bottom: 106px;
  right: 34px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 14, 32, 0.92);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 210, 255, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(10px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  text-decoration: none;
  cursor: pointer;
}
#scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}
#scroll-top:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 210, 255, 0.65);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  border-radius: 50%;
  pointer-events: none;
}
.progress-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 4;
}
.progress-ring-circle {
  fill: none;
  stroke: #00d2ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 263.89;
  stroke-dashoffset: 263.89;
  transition: stroke-dashoffset 0.1s linear;
  filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.9));
}

#scroll-top i {
  font-size: 1.6rem;
  color: #00d2ff;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 2;
}
#scroll-top:hover i {
  transform: translateY(-2px);
  color: #ffffff;
}

@media (max-width: 600px) {
  #scroll-top {
    bottom: 86px;
    right: 18px;
    width: 46px;
    height: 46px;
  }
  #scroll-top i {
    font-size: 1.4rem;
  }
}
/* scroll top ends */
