html, body {
    height: 100%;
    margin: 0;
    background-color: white;
    
}


.section-one{
    background: url('../images/orig.png');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-one-text{
    padding-top: 220px;
    padding-left: 20%;
    color:white;
}


#tech-stack{
  min-height: 100vh
}

.tech-stack-title{
  font-family: "Arial Black";
}

.project-title{
  font-family: "Arial Black";
}
 
#contact{
  min-height: 100vh
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 100500;
  background-color: rgb(18, 18, 18);
}
#preloader .preloader-image{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Arrow */
  .scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
  }
  
  .scroll-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .scroll-arrow a:hover {
    background-color: #555;
  }
  
  .scroll-arrow a i {
    font-size: 20px;
    animation: arrow-bounce 2s infinite;
  }
  
  @keyframes arrow-bounce {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @media (max-width: 767px) {
    .scroll-arrow {
      display: none;
    }
  }
  
  .animate-charcter
{
  background-image: linear-gradient(
    -225deg,
    #ffffff 0%,
    #424242 29%,
    #960000 67%,
    #470208 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear 1;
  display: inline-block;
}

/* qrcode */
.qr-code {
  max-width: 200px;
  margin: 10px;
}

/* password */
.option {
  display: flex;
  justify-content: space-between;
  padding: 4px;
  }
  .result__container {
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid black;
  padding: 0 5px;
  }
  
  .result-container #result {
  word-wrap: break-word;
  max-width: calc(100% - 40px);
  }
  
  .result__container #copy {
  height: 40px;
  width: 40px;
  background-color: #eb1606;
  color: #ffffff;
  border: none;
  cursor: pointer;
  outline: none;
  }
  
  .result__container #copy:hover {
  background-color: #1c2541;
  color: #ffffff;
  }
  
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}


.fading {
    animation-name: fade-in;
    animation-duration: 7s;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


  /* social media */
  


  .bg-transparent {
    background-color: transparent !important;
    border: none;
  }
  
  .bg-gray-300 {
    background-color: #1a1b1a;
  }


  /* word cloud section */

  .tech-cloud {
    height: 60vh;
    background: radial-gradient(circle at center, #1a1a1b, #000000);
    overflow: hidden;
    position: relative;
  }
  
  .word-cloud .word {
    position: absolute;
    font-weight: 800;
    font-family: 'Segoe UI', sans-serif;
    opacity: 0.2;
    color: #ffffff;
    white-space: nowrap;
    font-size: calc(2rem + 2vw);
    pointer-events: none;
  }
  
  /* Floating directions */
  .dir-up {
    animation: floatUp 18s infinite ease-in-out;
  }
  .dir-down {
    animation: floatDown 20s infinite ease-in-out;
  }
  .dir-left {
    animation: floatLeft 22s infinite ease-in-out;
  }
  .dir-right {
    animation: floatRight 24s infinite ease-in-out;
  }
  
  /* Different floating effects */
  @keyframes floatUp {
    0% { transform: translateY(0px); opacity: 0.1; }
    50% { transform: translateY(-30px); opacity: 0.3; }
    100% { transform: translateY(0px); opacity: 0.1; }
  }
  
  @keyframes floatDown {
    0% { transform: translateY(0px); opacity: 0.15; }
    50% { transform: translateY(30px); opacity: 0.35; }
    100% { transform: translateY(0px); opacity: 0.15; }
  }
  
  @keyframes floatLeft {
    0% { transform: translateX(0px); opacity: 0.1; }
    50% { transform: translateX(-40px); opacity: 0.25; }
    100% { transform: translateX(0px); opacity: 0.1; }
  }
  
  @keyframes floatRight {
    0% { transform: translateX(0px); opacity: 0.15; }
    50% { transform: translateX(40px); opacity: 0.3; }
    100% { transform: translateX(0px); opacity: 0.15; }
  }
  


  /* Animations */
.animate-left {
  animation: slideLeftFade 1.5s ease forwards;
}
.animate-right {
  animation: slideRightFade 1.5s ease forwards;
}

@keyframes slideLeftFade {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRightFade {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Background sections */
.about-me-section,
.projects-section,
.contact-section, .bg-footer{
  background: radial-gradient(circle at center, #1a1a1b, #000000);
}

/* Project card hover */
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

/* Contact glass effect */
.contact-card {
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* .motivation-section */
.motivation-section {
  background: radial-gradient(circle at center, #1a1a1b, #000000);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leadership-section {
  background: radial-gradient(circle at center, #1a1a1b, #000000);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section {
  background: radial-gradient(circle at center, #1a1a1b, #000000);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fading {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.tech-stack-section {
  background: radial-gradient(circle at center, #1a1a1b, #000000);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
