@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-family: sans-serif;
    -webkit-tap-highlight-color: rgba(32, 110, 77, 0) !important;
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
    outline: none !important;
}
body, html{
    background-color: rgb(0, 0, 0);
    clip-path: inset(0 0 0 0);
    overflow-x: hidden;
    overflow-y: auto;
    will-change: transform;
}
body::-webkit-scrollbar {
    width: 8px;               
  }
  
body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);        
  }
  
 body::-webkit-scrollbar-thumb {
    padding: 2px;
    background-color: rgba(65, 64, 64, 0.473);   
    border-radius: 20px;       
}
.home-page {
    position: relative;
    background-color: #000000;
    min-height: 490px;
    height: 490px; 
    max-height: 490px;
    display: flex;
    width: 100vw;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    color: #eee;
}

.blob-outer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    min-height: 490px;
    height: 490px; 
    width: 100%;
    overflow: hidden;
    z-index: 100;
    filter: blur(150px);
}

.blob-inner-container {
    border-radius: 99999px;
    width: 100vw;
    min-height: 250px;
    height: 300px;
    min-width: 1000px;
    overflow: hidden;
    background-color: rgb(43, 115, 91);
    transform: scale(0.8);
}

.blob {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: conic-gradient(from 0deg, rgb(60, 161, 127), rgb(79, 142, 167) , #ac47ca);
    animation: spinBlob 8s linear infinite;
}

@keyframes spinBlob {
    0% {
        transform: rotate(0deg) scale(2);
    }

    100% {
        transform: rotate(1turn) scale(2);
    }
}
.navbar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.11); 
  border-radius: 50px;
  backdrop-filter: blur(10px);
  z-index: 1000;
  margin-top: 80px;
}

.nav-item {
  position: relative;
}

.nav-btn {
  font-family: Roboto Mono, Arial, Helvetica, sans-serif;
  background: rgba(109, 108, 108, 0.226);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #eee;
  color: black;
}

.dropdown {
  font-family: Roboto Mono, Arial, Helvetica, sans-serif;
  display: none;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.938);
  border-radius: 10px;
  overflow: hidden;
  z-index: 100000;
}

.dropdown a {
  font-family: Roboto Mono, Arial, Helvetica, sans-serif;
  font-size: 13px;
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  z-index: 100000;
}

.dropdown a:hover {
  background: #eee;
  color: black;
  z-index: 100000;
}

.nav-item:hover .dropdown {
  display: block;
}
.title{
    z-index: 100;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Orbitron,Quantico ,Roboto Mono, Arial, Helvetica, sans-serif;
    font-size: 98px;
    color: #eee;
    font-weight: 600;
    position: absolute;
}
#typewriter {
    margin-top: 65px;
    z-index: 100000;
    font-family: Roboto Mono, Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #eee;
}

.button {
    margin-top: 180px;
    z-index: 1000000;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--clr);
    color: #eee;
    border-radius: 10rem;
    font-family: Orbitron,Roboto Mono, Arial, Helvetica, sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
  }
  
  .button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 23px;
    position: relative;
    color: var(--clr);
    background-color: rgba(109, 108, 108, 0.226);
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #eee;
  }
  
  .button:hover {
    background-color: #eee;
    color: black;
  }
  
  .button:hover .button__icon-wrapper {
    color: #000000;
  }
  
  .button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
  }
  
  .button:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
  }
  
  .button:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
  }
  
hr{
    background-color: rgba(65, 64, 64, 0.171);
    z-index: 100000;
    border: 2px solid rgba(65, 64, 64, 0.171);
}

.container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px; 
    margin-top: 70px;
}

.container {
    width: 320px; 
    height: 380px; 
    background-color: #50505027; 
    border-radius: 20px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #eee;
    font-family: Orbitron;
    text-decoration: none;
     transition:  transform 0.2s ease-in-out;
}

.image{
    margin-top: 30px;
    margin-left: 93px;
    align-self: flex-start;
    padding-bottom: 10px;
    
}
.image1{
  margin-left: 93px;
    margin-top: 40px;
    align-self: flex-start;
    
}
.container1{
    box-shadow: rgb(43, 115, 91) 0px 50px 100px -20px, rgb(0, 0, 0) 0px 30px 60px -30px, rgb(43, 115, 91) 0px -2px 6px 0px inset;
}
.container2{
    box-shadow: #8f3ba8 0px 50px 100px -20px, rgb(0, 0, 0) 0px 30px 60px -30px, #8f3ba8 0px -2px 6px 0px inset;

}
.container3{
    box-shadow: rgb(63, 112, 131) 0px 50px 100px -20px, rgb(0, 0, 0) 0px 30px 60px -30px, rgb(63, 112, 131) 0px -2px 6px 0px inset;
}
.container p{
    font-family:Roboto Mono ,Arial, Helvetica, sans-serif;
    font-weight:400;
    font-size: 11px;
    color: #eeeeeea2;
    padding: 0 30px 30px 30px;
    text-align: center;
    margin-top: 8px;
}

.button1 {
    height: 50px;
    width: 200px;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #414141;
    overflow: hidden;
    border-radius: 30px;
    color: #ffffff;
    z-index: 100000;
    transition: all 0.6s ease-in-out;
  }
  .but{
    margin-top: 15px;
  }
  .btn-txt {
    z-index: 1;
    font-weight: 700;
    letter-spacing: 4px;
  }
  
  .type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.7s ease-in-out;
    background-color: #25252570;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
  }
  
  .but:hover {
    color: rgb(43, 115, 91);
  }
  .but2:hover {
    color: rgb(63, 112, 131);
  }
  .but1:hover {
    color: #8f3ba8;
  }
  
  .type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
  }

  .hr1{
      margin-top: 110px;
  }
    
  footer {
      height: 100px;
      background-color: #2424242a;
      color: rgba(129, 129, 129, 0.726);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      font-family: Arial, sans-serif;
      position: relative; 
  }

  .copyright {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      font-size: 15px;
      white-space: nowrap;
  }

  .right-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: absolute;
      right: 20px;
  }

  .right-section img {
      height: 60px; 
      width: auto;
      opacity: 0.6;
  }

  .right-section p {
      margin-top: -5px;
      font-size: 13px;
      font-family: Orbitron ,Oswald ,Arial, Helvetica, sans-serif;
      font-weight: 600;
  }

@media (max-width: 800px) {
  footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 150px;
    }

  .copyright {
        text-align: center;
        margin-bottom: 50px;
    }

  .right-section {
        position: static;
        margin-top: 45px;
    }
}
@media (max-width:430px) {
  .copyright{
    font-size: 12px;
  }
  .right-section{
    transform: scale(0.98);
  }
}
@media (max-width: 852px) {
  .home-page{
    height: 700px;
    min-height: 700px;
    max-height: 700px;
  }
  .blob-outer-container{
    min-height: 700px;
    height: 700px; 
  }
  .navbar{
    margin-top: 175px;
  }
  
  body::-webkit-scrollbar {
      display: none;
      scrollbar-width: none;
      /* pointer-events: none; */
  }
}

@media (max-width: 750px)and (min-width:650px){
  .title{
    transform: scale(0.88);
  }
  .navbar{
    transform: scale(0.9) translate(-50%);
    margin-left: -22px;
  }
} 
@media (max-width:650px) and (min-width:600px) {
  .title{
    transform: scale(0.8);
  }
  .navbar{
    transform: scale(0.9) translate(-50%);
    margin-left: -22px;
  }
  
}
@media (max-width:1370px) and (min-width:1150px){
  .container-wrapper{
    transform: scale(0.9);
  }
  
}
@media (max-width:1150px) and (min-width:1000px) {
  .home-page{
    height: 490px;
    min-height: 490px;
    max-height: 490px;
  }
  .blob-outer-container{
    min-height: 490px;
    height: 490px; 
  }
  
}
@media (max-width:1150px) and (min-width:1130px) {
  .container-wrapper{
    transform: scale(0.85);
    margin-top: 50px;
  }
}
@media (max-width:1130px) {
  .container-wrapper img{
    margin-left: 88px;
   } 
   .container-wrapper{
    transform: scale(0.84);
    margin-top: 50px;
  }
}
@media (max-width:1100px) and (min-width:1000px) {
  .container-wrapper img{
    margin-left: 88px;
    margin-right: 78px;
   } 
   .container-wrapper{
    transform: scale(0.84);
    margin-top: 50px;
  }
}
@media (max-width:1000px)  {
  .container-wrapper img{
    margin-left: 88px;
    margin-right: 78px;
   } 
   .container-wrapper{
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .hr1{
    margin-top: 35px;
  }
  
}
@media (max-width:1000px) and (min-width:850px) {
  .container-wrapper{
    transform: scale(0.9);
    margin-top: 20px;
    gap: 100px;
    flex-wrap: wrap;
  }
  .hr1{
    margin-top: 50px;
  }
}
@media (max-width:747px) and (min-width:550px) {
  .container-wrapper{
    transform: scale(1.02);
    margin-top: 60px;
    gap: 100px;
    flex-wrap: wrap;
  }
  .hr1{
    margin-top: 90px;
  }
}
@media (max-width:600px){
  .title {
    transform: scale(0.7);
}
  .navbar{
    margin-top: 188px;
    margin-left: -28px;
    transform: scale(0.87) translate(-50%);
}
  #typewriter{
    transform: scale(0.88);
    margin-top: 50px;
  }
  .button {
    margin-top: 155px;
    transform: scale(0.9);
  }
}
@media (max-width:500px) and (min-width:450px) {
  .home-page{
    height: 600px;
    min-height: 600px;
    max-height: 600px;
  }
  .blob-outer-container{
    min-height: 600px;
    height: 600px; 
  }
  .navbar{
    margin-top: 140px;
    margin-left: -28px;
    transform: scale(0.87) translate(-50%);
}
.title {
  transform: scale(0.58);
}
}
@media (max-width:450px) and (min-width:400px) {
  .home-page{
    height: 490px;
    min-height: 490px;
    max-height: 490px;
  }
  .blob-outer-container{
    min-height: 490px;
    height: 490px; 
  }
  .navbar{
    margin-top: 100px;
    margin-left: -33px;
    transform: scale(0.85) translate(-50%);
}
.title {
  transform: scale(0.58);
  margin-top: 25px;
}
.container-wrapper{
  margin-top: -10px;
}
#typewriter{
  margin-top: 75px;
}
.button {
  margin-top: 185px;
  transform: scale(0.9);
}
.hr1{
  margin-top: 0px;
}
}
@media (max-width:400px) and (min-width:370px) {
  .home-page{
    height: 490px;
    min-height: 490px;
    max-height: 490px;
  }
  .blob-outer-container{
    min-height: 490px;
    height: 490px; 
  }
  .navbar{
    margin-top: 105px;
    margin-left: -45px;
    transform: scale(0.8) translate(-50%);
}
.title {
  transform: scale(0.5);
  margin-top: 25px;
}
.container-wrapper{
  margin-top: -50px;
}
#typewriter{
  transform: scale(0.82);
  margin-top: 70px;
}
.button {
  margin-top: 180px;
  transform: scale(0.9);
}
.hr1{
  margin-top: -10px;
}
}
@media (max-width:370px) and (min-width:200px) {
  .home-page{
    height: 450px;
    min-height: 450px;
    max-height: 450px;
  }
  .blob-outer-container{
    min-height: 450px;
    height: 450px; 
  }
  .navbar{
    margin-top: 100px;
    margin-left: -65px;
    transform: scale(0.7) translate(-50%);
}
.title {
  transform: scale(0.45);
  margin-top: 25px;
}
.container-wrapper{
  margin-top: -100px;
}
#typewriter{
  transform: scale(0.76);
  margin-top: 50px;
}
.button {
  margin-top: 150px;
  transform: scale(0.9);
}
.hr1{
  margin-top: -80px;
}
  
}
@media  (max-width:550px) and (min-width: 450px) {
  .container-wrapper{
    transform: scale(0.9);
    margin-top: -30px;
    gap: 100px;
    flex-wrap: wrap;
  }
  .hr1{
    margin-top: 0px;
  }
}
@media (max-width:450px) {
  .container-wrapper{
    gap: 120px;
    transform: scale(0.9);
  }
  
}

@media (max-width:400px) {
  .container-wrapper{
    gap: 120px;
    transform: scale(0.85);
  }
} 
@media (max-width:370px) {
  .container-wrapper{
    gap: 120px;
    transform: scale(0.78);
  }
} 