* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
}

.section {
  height: 100vh;
}

a, li {
  all: unset;
  cursor: pointer;
}

.to-top {
  position: fixed;
  bottom: 16px;
  right: 32px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  opacity: 0;
  pointer-events: none;
  background-color: dimgrey;
  border-radius: 50%;
  color: #fff;
  transition: all 0.4s;
}

.to-top.active {
  bottom: 32px;
  pointer-events: auto;
  opacity: 1;
}

.welcome {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.intro {
  height: 90px;
  border-right: 2px solid #000000;
  width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  animation: flicker-1 2s linear both;
}

.intro1 {
  height: 90px;
  overflow: hidden;
  display: grid;
  place-items: center;
  animation: flip-out-hor-top 0.45s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@keyframes flicker-1 {
  0% {
    opacity: 1;
  }
  99% {
    border-right: 2px solid #000000;
  }
  100% {
    width: 400px;
    border-right: 0px solid #000000;
  }
  75% {
    width: 205px;
  }
  50% {
    opacity: 1;
    width: 0%;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes flip-out-hor-top {
  0% {
    transform: rotateX(0);
    opacity: 1;
  }
  100% {
    transform: rotateX(80deg);
    opacity: 0;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5% 0px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.nav_links {
  list-style: none;
  transition: all 0.3s ease 0s;
}
.nav_links li {
  animation: fade-in-bottom 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  padding: 0px 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
.nav_links li:hover {
  scale: 1.1;
  color: #0088a9;
}
.nav_links li a {
  font-weight: bold;
  padding: 5px;
  border-radius: 20px;
}
.nav_links li a:hover {
  border: 2px solid #fff;
}

@keyframes fade-in-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.nav_links li:nth-child(2) {
  animation-delay: 0.3s;
}
.nav_links li:nth-child(3) {
  animation-delay: 0.4s;
}
.nav_links li:nth-child(4) {
  animation-delay: 0.5s;
}

.skillbtn {
  padding: 13px;
  text-align: center;
  border: 1px solid #636e72;
  border-radius: 7px;
  color: #636e72;
}
.skillbtn:hover {
  background-color: #1e272e;
  color: #fff;
}

.borderRight {
  border-image-source: linear-gradient(180deg, rgba(217, 219, 219, 0) 0%, rgb(147, 150, 150) 50%, rgba(217, 219, 219, 0) 100%);
  border-image-slice: 1;
  border-right: 1px solid;
}

.borderLeft {
  border-image-source: linear-gradient(180deg, rgba(217, 219, 219, 0) 0%, rgb(147, 150, 150) 50%, rgba(217, 219, 219, 0) 100%);
  border-image-slice: 1;
  border-left: 1px solid;
}

.borderBottom {
  border-image-source: linear-gradient(90deg, rgba(217, 219, 219, 0) 0%, rgb(147, 150, 150) 50%, rgba(217, 219, 219, 0) 100%);
  border-image-slice: 1;
  border-bottom: 1px solid;
}

.sideBar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.sideBar li {
  width: 100%;
}
.sideBar li:not(:has(a)) {
  padding: 10px;
  width: 100%;
}
.sideBar li a {
  display: block;
  width: 100%;
  padding: 10px;
  font-weight: bold;
  font-size: 1.3rem;
}

@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (min-width: 801px) {
  .menu {
    display: none;
  }
}
@media (max-width: 800px) {
  .hideon800 {
    display: none;
  }
}
#switch {
  width: 40px;
  height: 21px;
  margin: 5px 1px;
  position: relative;
  display: block;
  background-color: #ebebeb;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
  z-index: 3;
  box-shadow: inset 0px 5px 15px rgba(0, 0, 0, 0.4), inset 0px -5px 15px rgba(255, 255, 255, 0.4);
}
#switch::after {
  content: "";
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 3px;
  background: rgb(255, 204, 137);
  background: radial-gradient(circle, rgb(245, 175, 82) 12%, rgb(255, 153, 0) 100%);
  transition: 0.3s;
}

.switchdiv {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 70px;
}

#switchinput {
  width: 0;
  height: 0;
  visibility: hidden;
}
#switchinput:checked + #switch {
  background: #242424;
}
#switchinput:checked + #switch::after {
  left: 21px;
  background: radial-gradient(circle, #cecdcd 12%, #7c7c7c 100%);
}

.blackbody {
  background: #0a0a0a;
  color: snow;
}

.logoimg {
  filter: drop-shadow(0px -2px 2px rgb(24, 158, 239));
}

.blackitm {
  box-shadow: 0px 0px 8px 8px #00ffb8;
  z-index: 1;
}

.blur {
  filter: blur(1px);
}

.blacktyper {
  text-shadow: -1px 1px 4px #00ffdd;
  color: #fff;
}

.sideBar-wht {
  background-color: rgba(255, 255, 255, 0.1);
  color: #000;
}
.sideBar-wht li:hover {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px black;
}

.sideBar-blck {
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}
.sideBar-blck li:hover {
  background-color: #000000;
  box-shadow: 0px 0px 10px 0px #fff;
}

.heading {
  color: #2c3e50;
  font-size: 2.5rem;
}

@media (prefers-color-scheme: dark) {
  .system-mode {
    background-color: #0a0a0a;
    color: snow;
  }
}
#popup {
  color: #000;
  clip-path: polygon(100% 0, 100% 100%, 95% 88%, 0 88%, 0 0);
  width: 50%;
  text-align: center;
  background-color: rgba(60, 60, 60, 0.8901960784);
  height: 50px;
  display: none;
  position: absolute;
  right: 10px;
  top: 100px;
  border-radius: 7px 7px 0 17%;
  padding: 1px 1px 7px;
}
#popup div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 7px 7px 7px 4px;
}

.background {
  position: fixed;
  top: 60px;
  left: -15%;
  width: 600px;
  height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.1s linear;
  transform: rotate(45deg);
}
.background .square {
  border-radius: 25px;
  margin: 5px;
  transition: border-radius 0.1s;
}

.square:nth-child(1) {
  background-color: #718bab;
}

.square:nth-child(2) {
  background-color: rgba(0, 0, 0, 0);
}

.square:nth-child(3) {
  background-color: #c3cdd9;
}

.square:nth-child(4) {
  background-color: #7a91ae;
}

.sectionabout {
  height: 100vh;
}

.picdiv {
  display: flex;
  align-items: center;
  justify-content: space-around;
  filter: drop-shadow(10px 19px 1px #2c3e50);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cdefs%3E%3ClinearGradient id='gradient' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='rgb(76,161,175)'/%3E%3Cstop offset='100%25' stop-color='rgb(196,224,229)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23gradient)' d='M412.5,313Q423,376,365,400Q307,424,243.5,444Q180,464,144.5,408.5Q109,353,96,301.5Q83,250,76.5,184.5Q70,119,132.5,99.5Q195,80,245.5,94Q296,108,347,125Q398,142,400,196Q402,250,412.5,313Z'%3E%3Canimate attributeName='d' dur='10000ms' repeatCount='indefinite' values='M412.5,313Q423,376,365,400Q307,424,243.5,444Q180,464,144.5,408.5Q109,353,96,301.5Q83,250,76.5,184.5Q70,119,132.5,99.5Q195,80,245.5,94Q296,108,347,125Q398,142,400,196Q402,250,412.5,313Z;M419,298Q383,346,353.5,412Q324,478,264,435.5Q204,393,174,360Q144,327,74.5,288.5Q5,250,53.5,196Q102,142,155,131Q208,120,262,84Q316,48,383.5,76Q451,104,453,177Q455,250,419,298Z;M398.5,302.5Q395,355,353.5,397.5Q312,440,260,409Q208,378,166.5,359.5Q125,341,89,295.5Q53,250,90,205Q127,160,160,117.5Q193,75,241,102.5Q289,130,324.5,150Q360,170,381,210Q402,250,398.5,302.5Z;M410,287Q351,324,338.5,403.5Q326,483,257.5,461Q189,439,150,395Q111,351,89.5,300.5Q68,250,73.5,188Q79,126,137.5,105.5Q196,85,246.5,95Q297,105,345.5,125.5Q394,146,431.5,198Q469,250,410,287Z;M438.5,323.5Q452,397,373,392Q294,387,246,399Q198,411,169.5,370Q141,329,87,289.5Q33,250,57.5,189Q82,128,143.5,119.5Q205,111,259.5,82.5Q314,54,344.5,107Q375,160,400,205Q425,250,438.5,323.5Z;M412.5,313Q423,376,365,400Q307,424,243.5,444Q180,464,144.5,408.5Q109,353,96,301.5Q83,250,76.5,184.5Q70,119,132.5,99.5Q195,80,245.5,94Q296,108,347,125Q398,142,400,196Q402,250,412.5,313Z'/%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#main-content {
  position: absolute;
  top: 0;
}

.slideleft {
  animation: slide-in-left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.nyddiv {
  width: 100%;
  height: 25vh;
  overflow: hidden;
  justify-content: center;
  display: flex;
  align-items: center;
  opacity: 0.8;
  position: relative;
  z-index: -1;
}
.nyddiv img {
  width: 100%;
}

.nyddiv2 {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 30px;
  top: 27vh;
  z-index: -1;
}
.nyddiv2 img {
  width: 100%;
  height: 98%;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px #000000;
}

.cta-div {
  display: flex;
  margin: 0px 0px 5px;
  margin: 10px;
}

#cta-checkbox {
  width: 0;
  height: 0;
  visibility: hidden;
}

#cta-txt {
  margin: auto;
  transition: 0.2s;
}

.flexdir-row {
  display: flex;
  flex-direction: row-reverse;
}

#cta-label {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  border: 1px solid;
  cursor: pointer;
  animation: shadowmoving 1s infinite both;
}

@keyframes shadowmoving {
  0% {
    box-shadow: 0 0 3px 1px rgb(44, 62, 80), 0 0 3px 10px rgba(44, 62, 80, 0.2);
  }
  100% {
    box-shadow: 0 0 3px 11px rgba(44, 62, 80, 0), 0 0 3px 9px rgba(44, 62, 80, 0.2);
  }
}
.graph-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  box-shadow: 0px 0px 10px 2px #2c3e50;
}

#graph-up {
  animation: roll-in-left 0.6s ease-out both;
}

@keyframes roll-in-left {
  0% {
    transform: translateX(-170px) rotate(-540deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
#graph-down {
  animation: roll-in-right 0.6s ease-out both;
}

@keyframes roll-in-right {
  0% {
    transform: translateX(170px) rotate(540deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.slidetop {
  animation: slide-in-top 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.slideright {
  animation: slide-in-right 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.slidebottom {
  animation: slide-in-bottom 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.introTxt {
  padding: 3rem;
  color: #2c3e50;
  font-family: cursive;
}

.aboutTxt {
  max-width: 1000px;
  text-align: center;
  margin: auto;
  padding: 1rem;
}

@media (min-width: 601px) {
  .nyd_display {
    display: none;
  }
  .homesection {
    height: 100vh;
  }
}
@media (max-width: 800px) {
  .background {
    width: 500px;
    height: 500px;
  }
  .sectionabout {
    height: 100%;
  }
  .introTxt {
    padding: 2rem 3rem;
  }
}
@media (max-width: 600px) {
  .background {
    width: 400px;
    height: 400px;
  }
  .picdiv {
    display: none;
  }
  .homesection {
    margin-bottom: 50px;
  }
  .introTxt {
    padding: 1rem 2rem 0rem;
  }
}
.animetxt-right {
  animation: scale-in-hor-right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes scale-in-hor-right {
  0% {
    transform: scaleX(0);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
.animetxt-left {
  animation: scale-in-hor-left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes scale-in-hor-left {
  0% {
    transform: scaleX(0);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
.contact {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 10px 10px 10px;
}
.contact a {
  cursor: pointer;
}
.contact a div {
  width: 50px;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  height: 50px;
  border-radius: 50%;
  border: 4px solid black;
  display: flex;
  align-items: center;
  padding: 4px;
  box-shadow: 0px 0px 13px 3px #00fbd8;
  transition: 0.3s;
}
.contact a div:hover {
  box-shadow: 0px 0px 0px 0px;
  scale: 0.9;
  color: #0088a9;
}

@keyframes fade-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.contact a div:nth-child(2) {
  animation-delay: 0.3s;
}
.contact a div:nth-child(3) {
  animation-delay: 0.5s;
}
.contact a div:nth-child(4) {
  animation-delay: 0.7s;
}

footer {
  height: 40vh;
  background-color: transparent;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: -7px -16px 20px rgba(0, 0, 0, 0.08);
}

.blueGradient {
  background: rgb(41, 41, 41);
  background: linear-gradient(0deg, rgb(58, 59, 59) 0%, rgb(41, 41, 41) 50%, rgb(60, 61, 61) 100%);
}

.slider {
  position: relative;
  width: 100%;
  height: 370px;
  overflow: hidden;
}

.items {
  position: absolute;
  width: 450px;
  height: 320px;
  text-align: justify;
  transition: 0.5s;
  left: calc(50% - 220px);
  top: 20px;
  box-shadow: 3px 2px 9px #000;
}

.imgwidth {
  width: 450px;
}

#prev, #next, #prev2, #next2 {
  position: absolute;
  top: 40%;
  color: #000000;
  left: 50px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}
#prev i, #next i, #prev2 i, #next2 i {
  font-size: xx-large;
  transition: all 0.3s ease 0s;
}
#prev i:hover, #next i:hover, #prev2 i:hover, #next2 i:hover {
  color: #464545;
}

#next, #next2 {
  left: unset;
  right: 50px;
}

#prev2, #next2 {
  color: #fff;
}

.certiVeiw {
  width: 450px;
  height: 300px;
  background-color: #fff;
}

.seeall {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.text-whi {
  color: #fff !important;
}

@media (max-width: 980px) {
  .text-whi {
    color: #000 !important;
  }
}
@media (max-width: 600px) {
  .items {
    left: calc(50% - 150px);
  }
  .imgwidth, .items {
    width: 300px;
    height: 210px;
  }
  .slider {
    height: 260px;
  }
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.popup-content {
  background: white;
  height: 270px;
  width: 300px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
}
.popup-content .warningSvg {
  color: #fff;
  background-color: #e23636;
  border-radius: 12px 12px 0 0;
  height: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.popup-content p {
  margin: 30px 0;
  padding: 9px;
}

.projects {
  padding: 4rem 2rem;
  text-align: center;
}
.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background: transparent;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-8px);
}
.project-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #2c3e50;
}
.project-card p {
  font-size: 1rem;
  color: #636e72;
  margin-bottom: 1rem;
}
.project-card a {
  display: inline-block;
  margin: 0.5rem 0.5rem 0 0;
  padding: 0.5rem 1rem;
  color: #636e72;
  border: 1px solid #636e72;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.project-card a:hover {
  background: #1e272e;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  /* Popup box */
}
.overlay .BDayPopup {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: popupFade 0.4s ease;
}
.overlay .BDayPopup h2 {
  margin-bottom: 10px;
  color: #ff4081;
}
.overlay .BDayPopup p {
  margin-bottom: 20px;
  font-size: 16px;
}
.overlay .BDayPopup button {
  margin: 5px;
  padding: 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
}
.overlay .wish-btn {
  background: #4caf50;
  color: white;
}
.overlay .wish-btn:hover {
  background: #43a047;
}
@keyframes popupFade {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}/*# sourceMappingURL=porfolio.css.map */