@import "bootstrap.min.css";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --p1: 0, 127, 255;
  --n1: 255, 255, 255;
  --n2: 250, 250, 250;
  --n3: 143, 143, 143;
  --n4: 79, 79, 79;
  --n5: 41, 41, 41;
}

/* Base Typography */
body {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  max-width: 1920px;
  margin: auto;
  background-color: rgba(var(--n1), 1);
  font-size: 16px;
  line-height: 130%;
  padding: 0;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

.display-one {
  font-size: 65px;
  line-height: 120%;
}

.display-two {
  font-size: 72px;
  line-height: 120%;
}

h2, h2>a {
  font-size: 40px;
  line-height: 120%;
}

.fs-five {
  font-size: 24px;
  line-height: 120%;
}

.fs-seven {
  font-size: 18px;
  line-height: 130%;
}

a, p, span {
  font-size: 16px;
  line-height: 150%;
  margin: 0;
  color: rgba(var(--n5), 1);
  font-weight: 400;
}

a {
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease;
}

a:focus, a:hover {
  text-decoration: none;
  outline: none;
}

h2, h2>a, .display-one, .display-two {
  color: rgba(var(--n5), 1);
  font-weight: 700;
  padding: 0;
  margin: 0;
  line-height: 120%;
  display: block;
  transition: all 0.3s ease;
}

h2 span, h2>a span, .display-one span, .display-two span {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  font-weight: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

span {
  display: inline-block;
}

/* Utility Classes */
.p1-color {
  color: rgba(var(--p1), 1);
}

.n5-color {
  color: rgba(var(--n5), 1);
}

.br-bottom-n3 {
  border-bottom: 1px solid rgba(var(--n4), 0.08);
}

/* Responsive Typography */
@media (max-width: 1199px) {
  h2, h2>a {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .display-one {
    font-size: 72px;
  }

  .display-two {
    font-size: 64px;
  }

  h2, h2>a {
    font-size: 32px;
  }

  .fs-five {
    font-size: 18px;
    line-height: 130%;
  }

  .fs-seven {
    font-size: 16px;
    line-height: 130%;
  }

  a, p, span {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 575px) {
  .display-one {
    font-size: 56px;
    line-height: 67.2px;
  }

  .display-two {
    font-size: 48px;
    line-height: 46.4px;
  }

  h2, h2>a {
    font-size: 28px;
  }

  .fs-five {
    font-size: 20px;
  }

  .fs-seven {
    font-size: 16px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-button,
::-webkit-scrollbar-thumb {
  background: rgba(var(--p1), 1);
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px;
}

/* Social Icons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(var(--n5), 0.1);
  transition: all 0.3s ease-in-out;
}

.social-icon:hover {
  background-color: rgba(var(--p1), 1);
}

.social-icon:hover i {
  color: rgba(var(--n1), 1);
}

/* Loader Animation */
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: rgba(var(--p1), 0.8);
  --outer-line-color: #0000ff;
  --middle-line-color: #007fff;
  --inner-line-color: #00ffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded State Transitions */
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/* Banner Content & Typing Animation */
.banner-content {
  width: 478px;
}

.banner-content .typing-text {
  color: rgba(var(--p1), 1);
}

.banner-content .typing-text::after {
  content: "|";
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Profile Image Animation */
.user-bg {
  width: 325px;
  height: 333px;
  background-color: rgba(var(--p1), 1);
  animation: rotatedBg 10s infinite linear;
}

@keyframes rotatedBg {
  0%, 100% { transform: rotate(11.163deg); }
  50% { transform: rotate(-11.163deg); }
}

.user-img {
  position: absolute;
  top: 0px;
  width: 325px;
  height: 333px;
}

.line {
  width: 1px;
  height: 38px;
  background-color: rgba(var(--n5), 1);
}

/* Banner Counter */
.banner-counter {
  width: 750px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .banner-content {
    width: 100%;
  }

  .profile-img {
    left: 50%;
    transform: translateX(-50%);
  }

  .banner-counter {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .user-bg, .user-img {
    width: 280px;
    height: 287px;
  }
}


