@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html {
  font-size: 16px;
}

*:focus {
  outline: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;

}

:target {
  scroll-margin-top: 35vh;
  outline: none;
  animation: highlight 2s ease-in-out;
}


@keyframes highlight {
  from {
    background-color: #695cfec7;
  }

  to {
    background-color: none;
  }
}

::-webkit-scrollbar {
  display: none;
}

body {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none;
}

h1,
h2,
h3,
h4,
h5 {
  color: black;
  font-weight: 600;

}


h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}


blockquote,
body,
dd,
dl,
dt,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
legend,
li,
ol,
p,
pre,
textarea,
ul {
  margin: 0;
  padding: 0;

}


body {
  color: #7f8d9e;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.58;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #ffffff;
  display: block;

  background-image:
    linear-gradient(to right, #f1f0f0 1px, transparent 1px),
    linear-gradient(to bottom, #f1f0f0 1px, transparent 1px);
  background-size: 60px 60px;
}

body.no-scroll {
  overflow: hidden;
}

body.noscroll {
  overflow: hidden;
}

.outer {
  text-align: center;
  margin: 0 auto;
}

.content {
  max-width: 1000px;
  min-height: 90vh;
  margin: 56px auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 35px;
}



.block {
  text-align: center;
  background-color: #f0f0f0;
  padding: 30px;
}

.profile {
  margin-top: -10px;
  text-align: center;
  background-color: transparent;
  padding: 30px;
  margin-bottom: -20px;
}

.profile h1 {
  font-size: 29px;
}

.profile img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 1em;
}

.profile .username {
  color: #333333;
  margin-top: 0px;
  font-size: 1.04rem;
}

.profile .bio {
  color: black;
  margin-top: 10px;
  margin-bottom: -15px;
  font-size: 1rem;
}


.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 27px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0px;
  width: 50px;
  height: 50px;
  font-size: 30px;
  color: black;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
  outline: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.047)
}

.social-icons a:hover {
  animation: floatUpDown 0.4s ease-in-out;
}


@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

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

.social-icons a:active {
  transform: scale(0.9);
}

@media (hover: none) and (pointer: coarse) {
  .social-icons a:hover {
    animation: none;
    transform: none;
  }

  .social-icons a:active {
    transform: scale(0.9);
  }
}

.social-icons a[aria-label="Twitter"] i {
  font-size: 101%;
}

.social-icons a[aria-label="Instagram"] i {
  font-size: 110%;
}

.social-icons a[aria-label="YouTube"] i {
  font-size: 121%;
}

.social-icons a[aria-label="Telegram"] i {
  font-size: 105%;
}


/*================= MARQUEE SECTION ================= */

.marquee-wrapper {
  overflow: hidden;
  padding: 10px 0;
  margin-top: 12px;
  text-align: center;
  white-space: normal;
  transition: background-color 0.3s ease, color 0.3s ease;

}

.message {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
}

@media (max-width: 730px) {
  .message {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
  }
}

.offer-text {
  color: #000;
  display: inline;
}


.notion-link {
  color: #000000;
  padding: 2px 4px;
  border-bottom: 2px solid #25D366;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
}

.notion-link:hover {
  background-color: #25d36560;
  border-bottom-color: #25D366;
}

@media (hover: none) and (pointer: coarse) {
  .notion-link:hover {
    background-color: transparent;
  }
}


.offer-text i {
  font-size: 17px;
  color: white;
  background-color: #25D366;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
  line-height: 1;
  padding: 6px 7px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
}


/*================= LINKS SECTION ================= */

.links {
  margin-top: 25px;
}

.link {
  position: relative;
  margin-top: 20px;
  margin-left: 30px;
  margin-right: 20px;
  text-align: left;
  padding: 1.25rem;
  padding-left: 70px;
  display: block;
  font-size: 14px;
}


.link h2 {
  font-size: 14.5px;
  margin: 0px;
  line-height: 1.3em;
  margin-right: 18px;
}

@media (max-width: 730px) {


  .link {
    font-size: 0.91rem;
  }

  .link h2 {
    font-size: 1rem;
    margin: 0px;
    line-height: 1.3em;
    margin-right: 18px;
  }

}

.link .image-float {
  position: absolute;
  width: 60px;
  height: 60px;
  left: -10px;
  margin-top: -12px;
}

.link .image-float .image img {
  width: 60px;
  height: 60px;
}

.link .arrow {
  position: absolute;
  height: 100%;
  right: 20px;
  top: 0px;
  padding-top: 28px;
}


.link>.arrow,
.link>.image-float {
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.link:hover .arrow {
  transform: translateX(50%);
}

.link:hover .image-float {
  transform: translateY(-5%);
}

.link:active .arrow {
  transform: translateX(0%);
}

.link:active .image-float {
  transform: translateY(0%);
}

@media (hover: none) and (pointer: coarse) {
  .link:hover .arrow {
    transform: none;
  }

  .link:hover .image-float {
    transform: none;
  }

  .link:active .arrow {
    transform: translateX(50%);
  }

  .link:active .image-float {
    transform: translateY(-5%);
  }
}


a.link {
  color: #333333;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.link div.url {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 18px;
}

.beacon {
  position: absolute;
  -webkit-animation: beacon 2s ease infinite, tr 2s ease-out infinite;
  animation: beacon 2s ease infinite, tr 2s ease-out infinite;
  opacity: 0.85;
  width: 60px;
  height: 60px;
  border-radius: 3px;
}



@-webkit-keyframes beacon {
  from {
    opacity: 0.85;
  }

  to {
    opacity: 0;
  }
}

@keyframes beacon {
  from {
    opacity: 0.85;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes tr {
  from {
    transform: scaleX(1) scaleY(1);
  }

  to {
    transform: scaleX(1.5) scaleY(1.5);
  }
}

@keyframes tr {
  from {
    transform: scaleX(1) scaleY(1);
  }

  to {
    transform: scaleX(1.5) scaleY(1.5);
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



.x {
  background-color: #000000;
  box-shadow: 8px 8px 14px -8px #000000;
}

.facebook {
  background-color: #3b5998;
  box-shadow: 8px 8px 14px -8px #3b5998;
}

.github {
  background-color: #2b3137;
  box-shadow: 8px 8px 14px -8px #2b3137;
}

.google {
  background-color: #ffffff;
  box-shadow: 8px 8px 14px -8px #ffffff;
}

.instagram {
  background-color: #c13584;
  box-shadow: 8px 8px 14px -8px #c13584;
}

.linkedin {
  background-color: #0077b5;
  box-shadow: 8px 8px 14px -8px #0077b5;
}

.medium {
  background-color: #000000;
  box-shadow: 8px 8px 14px -8px #000000;
}

.paypal {
  background-color: #3b7bbf;
  box-shadow: 8px 8px 14px -8px #3b7bbf;
}

.twitter {
  background-color: #1da1f2;
  box-shadow: 8px 8px 14px -8px #1da1f2;
}

.telegram {
  background-color: #1da1f2;
  box-shadow: 8px 8px 14px -8px #1da1f2;
}

.groups {
  background-color: #875dff;
  box-shadow: 8px 8px 14px -8px #875dff;
}

.youtube {
  background-color: #ff0000;
  box-shadow: 8px 8px 14px -8px #ff0000;
}

.sheets {
  background-color: #0f9d58;
  box-shadow: 8px 8px 14px -8px #0f9d58;
}


.email {
  background-color: #f8f8f8;
  box-shadow: 8px 8px 14px -8px #aaaaaa;
}

.about {
  background-color: #f8f8f8;
  box-shadow: 8px 8px 14px -8px #aaaaaa;
}

.tally {
  background-color: #f8f8f8;
  box-shadow: 8px 8px 14px -8px #aaaaaa;
}

.google-form {
  background-color: #673ab6;
  box-shadow: 8px 8px 14px -8px #673ab6;
}

.quora {
  background-color: #ff0000;
  box-shadow: 8px 8px 14px -8px #ff0000;
}


/*==== FOOTER CTA CONTAINER ==== */

.footer-cta-container {
  text-align: center;
  margin-top: 60px;
  margin-bottom: -35px
}

.footer-cta-link {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #000000;
  margin: 0 auto;
  border: none;
  transition: color 0.2s ease;
  padding: 5px;
}

.footer-cta-link:hover {
  border: 2px solid #0078d7;
}

/*================= FLOATING ICONS ================= */
#share-icon {
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 35px;
  z-index: 999;
  font-size: 31px;
  color: black;
  transition: transform 0.2s ease;
}

#share-icon:hover {
  transform: scale(1.1);
}


#share-icon:active {
  transform: scale(1);
}

@media (hover: none) and (pointer: coarse) {
  #share-icon:hover {
    transform: none;
  }

  #share-icon:active {
    transform: scale(0.9);
  }
}



#bell-icon {
  position: absolute;
  top: 30px;
  right: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: black;
  transition: color 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;

}

#bell-icon:hover {
  animation: shakeBell 0.5s ease-in-out;

}

@keyframes shakeBell {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(10deg);
  }

  75% {
    transform: rotate(-10deg);
  }

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

.shake {
  animation: shakeBell 0.5s ease-in-out;
}


#bell-icon:active {
  transform: scale(0.9);
}

@media (hover: none) and (pointer: coarse) {
  #bell-icon:hover {
    animation: none;
  }

  #bell-icon:active {
    transform: scale(0.9);
  }
}




.scan-container {
  position: absolute;
  top: 0;
  right: 10%;
  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  width: 160px;
  height: 180px;
}

.scan-image {
  margin-top: 20px;
  position: relative;
  transform: translateY(-92%);
  transition: transform 0.5s ease-in-out;
  width: 160px;
  height: auto;
  cursor: none;
}

.scan-container:hover .scan-image {
  transform: translateY(0);
}


@media (max-width: 730px) {
  .scan-container {
    display: none;
  }
}




/* ====== DESKTOP SELECTION RECTANGLE ====== */

#selectionBox {
  position: fixed;
  border: 1px solid #4a90e2;
  background-color: rgba(74, 144, 226, 0.15);
  pointer-events: none;
  display: none;
  z-index: 999999;
  border-radius: 2px;
}


/* Disable on mobile */
@media (hover: none) and (pointer: coarse) {
  #selectionBox {
    display: none !important;
  }
}


/* Dark Theme */

html.dark h1,
html.dark h2,
html.dark h3,
html.dark h4,
html.dark h5 {
  color: #ffffff;
}

html.dark body {
  background-color: #121212;
  color: #e0e0e0;
  background-image:
    linear-gradient(to right, #222222 1px, transparent 1px),
    linear-gradient(to bottom, #222222 1px, transparent 1px);
}

html.dark .block {
  background-color: #1e1e1e;
}


html.dark .profile .username,
html.dark .profile .bio {
  color: #cccccc;
}

html.dark .social-icons a {
  color: #ffffff;
}


html.dark .offer-text {
  color: #ffffff;
}

html.dark .notion-link {
  color: white;
}



html.dark a.link {
  color: #bbbbbb;
}

html.dark .link {
  background-color: #1e1e1e;
}

html.dark .footer-cta-link {
  color: #ffffff;
}

html.dark .footer-cta-link:hover {
  border: 2px solid #0078d7;
}

html.dark #share-icon {
  color: #ffffff;
}

html.dark #bell-icon {
  color: white;
}

html.dark .close-btn {
  color: white;
}

html.dark .close-btn:hover {
  color: red;
}