* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -ms-user-select: none;
  user-select: none;
}

footer {
  position: relative;
}

.black {
  background-color: rgb(0, 0, 0);
  color: white;
}

.white {
  background-color: white;
  color: black;
}

.absolute {
  /* top: 50px !important; */
  overflow: hidden;
  inset: 0;
  height: 100vh;
  justify-content: center;
  display: flex;
  flex-direction: row;

}

.justify-centre {
  justify-content: center;
}

.bg-s1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: relative;
  animation: one 12s infinite alternate ease-in-out;
}

.bg-s2 {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  position: relative;
  animation: two 8s infinite alternate ease-in-out;
}

.bg-s3 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  animation: three 12s infinite alternate ease-in-out;
}

@keyframes one {
  0% {
    left: -20%;
    top: 5%;
  }

  25% {
    left: 30%;
    top: 10%;
  }

  50% {
    left: 40%;
    top: 35%;
  }

  75% {
    left: 10%;
    top: 45%;
  }

  100% {
    left: -10%;
    top: -10%;
  }
}

@keyframes two {
  0% {
    left: -20px;
    top: 0%;
  }

  25% {
    left: -80px;
    top: 36%;
  }

  50% {
    left: 45px;
    top: 40%;
  }

  75% {
    left: 80px;
    top: 22%;
  }

  100% {
    left: -10px;
    top: -20%;
  }
}

@keyframes three {
  0% {
    left: 10%;
    top: 80%;
  }

  25% {
    left: -10%;
    top: 40%;
  }

  50% {
    left: -70%;
    top: 50%;
  }

  75% {
    left: -70%;
    top: 52%;
  }

  100% {
    left: 10%;
    top: -10%;
  }
}


.opac {
  opacity: .45;
}

.bg-blur {
  filter: blur(100px);
}

.bg-primary {
  background-color: rgb(115, 97, 251);
  /* background-color: #05a7d8; */
}

.bg-teal {
  background-color: rgb(255, 124, 242);
}

.bg-red {
  background-color: rgb(255, 52, 113);
  /* background-color: orange; */
}

.littleself {
  position: absolute;
  top: 220px;
  margin: 0 26vw 0 25vw;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.6;
}

@media screen and (max-width: 867px) {
  .littleself {
    margin: 0 15vw;
  }
}

.left {
  position: absolute;
  left: 10px;
  margin: 16px;
  font-family: monospace;
  font-size: 20px;
  font-weight: 500;
}

.right {
  position: absolute;
  right: 20px;
  margin: 16px;
  font-family: monospace;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  gap: 24px;
  z-index: 10;
}

.pointer {
  cursor: pointer;
}

.follow {
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 1s ease-out;
}

.connect {
  position: absolute;
  bottom: -85px;
  color: #FF7F00;
  cursor: pointer;
  z-index: 12;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mail {
  display: flex;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.touch {
  width: 160px;
}

.nextsvg img {
  height: 20px;
  margin-top: 12px;
}

.connect:hover {
  animation: shake 0.6s;
  animation-iteration-count: 1;
}

.last:hover {
  animation: shake 0.6s;
  animation-iteration-count: 1;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  50% {
    transform: translateX(10px);
  }

  75% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.blink {
  animation: blink 3s infinite;
}

@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

#ibtn {
  border: 1px solid white;
  color: white;
  border-radius: 100%;
  padding: 0px 5px;
  font-size: 8px;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: absolute;
  top: 8px;
  left: 116px;
  z-index: 10;
  filter: invert(1);
}

#ibtn.blk {
  border: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}

/* Info Icon Styling */
.info-icon {
  position: relative;
  left: 116px;
  top: -15px;
  color: rgb(0, 0, 0);
  border: 1px solid black;
  width: 12px;
  height: 12px;
  font-size: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

.showinfo {
  position: relative;
}

/* Tooltip Styling */
.tooltip {
  position: absolute;
  top: 20%;
  left: 266%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  /* Semi-transparent black */
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  white-space: nowrap;
  /* Prevent text wrapping */
  font-size: 14px;
  visibility: hidden;
  /* Initially hidden */
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 10;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Show Tooltip on Hover */
.showinfo:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.tooltip p {
  font-weight: bold;
  margin-bottom: 8px;
}

.tooltip ul {
  list-style-type: none;
  padding-left: 20px;
  margin: 0;
}

.tooltip ul li {
  margin: 5px 0;
}

.para {
  margin-top: 12px;
  font-size: 12px;
}

@media screen and (max-width: 450px) {

  /* .showinfo{
    display: none;
  } */

  /* .ibtn {
    display: none;
  } */

  .info-icon {
    left: 30px;
    top: -15px;
    border: 1px solid black;
    width: 11px;
    height: 11px;
    font-size: 5px;
  }

  .tooltip {
    position: absolute;
    top: 50%;
    left: 666%;
    max-width: 100vw;
  }

  .left {
    position: absolute;
    left: 1px;
    margin: 16px;
    font-family: monospace;
    font-size: 18px;
    font-weight: 500;
  }

  .right {
    position: absolute;
    right: 1px;
    margin: 16px 16px;
    font-family: monospace;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    gap: 12px;
    z-index: 10;
  }

  .littleself {
    font-size: 22px;
    line-height: 1.5;
    top: 160px;
    margin: 0 10vw 0 10vw;
  }

  .absolute {
    height: 94vh;
  }

  .nextsvg img {
    margin-top: 8px;
    margin-left: -20px;
    height: 18px;
  }

  .connect {
    bottom: -90px;
  }
}

.upp {
  display: flex;
  gap: 1vw;
  justify-content: space-evenly;
  margin-top: 20px;
  margin-left: 20px;
}

.backs {
  display: flex;
  flex-direction: column;
}

.ak {
  color: #0295c2 !important;
  /* color: #0044ff !important; */
}

#footer.dark-mode {
  background: #222222;
  background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            /* soft white highlight */
            rgba(126, 178, 255, 0.088) 25%,
            /* faint icy blue shimmer */
            rgba(255, 172, 116, 0.093) 55%,
            /* faint warm orange shimmer */
            rgba(255, 255, 255, 0.085) 70%,
            /* neutral white frost */
            rgba(66, 66, 66, 0.08) 100%
            /* subtle dark depth */
        );
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
  color: #EAEAEA;
}

.mid,
.backs {
  color: #000000;
  /* color: #1ABC9C; */
  padding: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.down {
  color: #1C2833;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding: 20px 0 0 0;
}

.submit1 {
  background: linear-gradient(90deg, #1E90FF, #00BFFF);
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(1, 2, 2, 0.1);
  /* margin: 10px 55px; */
}

.sub001 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit1:hover {
  background: linear-gradient(90deg, #00BFFF, #1E90FF);
  box-shadow: 0 0 3px #000000, 0 0 10px #1E90FF;
  transform: translateY(-2px);
}

.submit1:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.one,
.two,
.three,
.four {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.two,
.three {
  gap: 25px;
}

.one {
  width: 30vw;
  margin-top: 20px;
}

.two {
  width: 10vw;
}

.three {
  width: 16vw;

}

.four {
  width: 30vw;
}

.network {
  margin: 0 0 0 0px;
}

.ak {
  padding: 16px 0px;
}

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

.last a {
  color: inherit;
  text-decoration: none;
  color: #0295c2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.last {
  padding: 26px 20px;
  display: flex;
  margin-left: -10px;
}

.arrow img {
  margin: 5px 10px 0 0;
}

.negs,
.nets {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  /* color: #000000; */
}

.negs,
.nets a {
  color: inherit;
  text-decoration: none;
}

.head {
  color: #ff7300;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

#footer {
  background-color: #f1f7ff;
  background: linear-gradient(
  135deg, 
  #f5f3ff, 
  rgba(115, 97, 251, 0.08) 25%,   /* light lavender-blue hint */
  rgba(255, 124, 242, 0.08) 50%, /* soft pinkish-magenta hint */
  rgba(255, 52, 113, 0.08) 75%,  /* warm pink-red hint */
  #f5f3ff
);
  padding: 15px;
}

@media screen and (max-width: 450px) {
  .upp {
    flex-wrap: wrap;
    /* flex-direction: column; */
    /* gap: 30px; */
  }

  .one,
  .four {
    width: 100%;
  }

  .one {
    /* margin-bottom: 30px; */
    padding-left: -10px;
  }

  .four {
    margin-top: 50px;
  }

  .mid {
    font-size: 16px;
    margin-left: -20px;
    margin-top: -15px;
    margin-bottom: 10px;
  }

  .last {
    margin-top: -20px;
  }

  .backs {
    margin-top: -20px;
  }

  .negs,
  .nets {
    margin-top: -30px;
  }

  .two,
  .three {
    width: 45vw;
    margin-left: -35px;
  }

  .down {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.resume {
  margin-bottom: 20px;
  margin-top: -60px;
}

.flexre {
  display: flex;
  justify-content: center;
  align-items: center;
}

.diagonal-section {
  position: relative;
  background-color:azure;
  background: rgba(237, 237, 237, 0.579);
  background: linear-gradient(
  135deg, 
  #f3f6ff, 
  #ecf3ff 25%,  /* very light blue */
  #ffece2 50%,  /* very light orange */
  #fff7f1 75%
);

  padding: 0px 0px 100px;
  color: white;
  margin-bottom: 60px;
}

.diagonal-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  clip-path: polygon(0 100%, 100% 0, 100% 101%, 0% 101%);
}

@media screen and (max-width: 450px) {
  .diagonal-section {
    margin-bottom: 50px;
    padding: 0 0 80px;
  }

  .diagonal-section::after {
    height: 60px;
  }
}

.giveresume {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px;
  width: 80vw;
}

.rhead {
  margin-bottom: 80px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: #000000;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.ropts {
  display: flex;
  gap: 12vw;
}

.rdownload {
  /* background-color: #007BFF; */
  background-color: #0295c2;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  /* box-shadow: 0 5px #0056b3; */
  box-shadow: 0 5px #016b8b;
}

.rdownload:hover {
  /* background-color: #0044ff; */
  background-color: #016b8b;
  transform: translateY(3px);
}

.rview {
  background-color: #FF7F00;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 0 5px #ff5500;
  text-decoration: none;
}

.rview:hover {
  background-color: #ff5500;
  transform: translateY(3px);
}

@keyframes moveUp {

  0% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-12px);
  }
}

.go-top {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  align-items: center;
  color: #ff5500;
  /* color: #ff4400; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 18px;
  animation: moveUp 3s ease-in-out infinite;
  /* animation-delay: 4s; */
}

.go {
  width: 45px;
  padding-top: 6px;
}

.gtop {
  transition: font-size 0.5s ease;
}

.gtop:hover {
  font-size: 22px;
}

@media screen and (max-width: 850px) {
  .one {
    margin-top: 2px;
  }
}

@media screen and (max-width: 450px) {

  .rhead {
    width: 240px;
    margin-bottom: 30px;
    margin-top: -60px;
    /* background-color: yellow; */
    font-size: 24px;
    text-align: center;
  }

  .ak {
    margin-left: -20px;
  }

  .last {
    margin-left: -36px;
  }

  .rview {
    width: 110px;
  }

  .ropts {
    margin-bottom: -100px;
    gap: 10px;
  }

  .rview,
  .rdownload {
    font-size: 14px;
    font-weight: 800;
    width: 120px;
    line-height: 1.5;
  }

  .four {
    margin-left: -12px;
  }
}

.wmmobile {
  display: none;
}

.wmlappy {
  display: block;
}

.mobile {
  display: none;
}

@media screen and (max-width: 450px) {
  .wmmobile {
    display: block;
    margin-left: 5px;
  }

  .wmlappy {
    display: none;
  }

  .mobile {
    display: flex;
  }

  .laptop {
    display: none;
  }

  .letscolab {
    margin-left: 36px;
    margin-top: -100px;
  }
}

.backs span {
  text-align: center;
}



.cursorcir {
  width: 12px;
  height: 12px;
  position: fixed;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: transform 0.2s ease-out, opacity 0.3s ease-out;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 30;
}

@media screen and (max-width: 450px) {
  .cursorcir {
    display: none;
  }
}