* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    min-height: 100vh;
    background: radial-gradient(circle at center, #111320 0%, #050607 60%);
    color:#fff;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 75px 20px 80px;
    width: 100%;  
    z-index: 1000; 
    background-color: #060708;
}
.logo{
    color:#fff;
    font-size:23px;
    font-weight:750;
}
.logo a{
  color:#fff;
  text-decoration: none;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 30px; 
}
.nav-links a {
    color: #fff; 
    text-decoration: none;
    padding:13px 17px;
    border-radius:42px;
    transition: all 0.3s ease;
    font-size: 16px; 
}
.navbar-btn {
    background-color:#9333ea;
    padding: 10px 32px;
    border-radius:30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px; 
}
.navbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px #7a3cff, 0 0 24px rgba(122, 60, 255, 0.6);
  border-color: #9d6bff;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
  }
  .nav-links {
    flex-direction: column;
    gap: 18px;
    margin-right: 0;
    align-items: center;
  }
  iframe{
    height:30vh !important;
  }
}

/*hero-css*/
.hero {
  min-height: 100vh;
  background-image: url(../img/wave.svg);
  background-size: cover;
  display: flex;             
  justify-content: center;       
  align-items: center;         
  text-align: center;
  padding: 40px 20px;
}
.hero-content {
  max-width: 1000px;
  display: flex;              
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.badge {
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9f55ff5c, #5b2cff7d);
  font-size: 14px;
  font-weight: 500;
  margin-top:16%;
  color: #fff;
  box-shadow: 0 0 20px rgba(140, 80, 255, 0.5);
  transition: 0.3s ease;
}
.badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 12px #7a3cff, 0 0 24px rgba(122, 60, 255, 0.6);
  border-color: #9d6bff;
}
.name {
  font-size:90px;
  font-weight: 800;
  letter-spacing: 2px;
  color:#c9cdd4;
}
.nickname {
  font-size: 90px;
  font-weight: 700;
  background: linear-gradient(90deg, #7b3cff, #b06cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.name,.nickname {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.roles {
  font-size: 20px;
  color: #c9b6ff;
  font-weight: 500;
}
.description1 {
  max-width: 750px;
  font-size: 18px;
  line-height: 1.7;
  color: #b9c0d0;
}
.work-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 28px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  background: linear-gradient(145deg, #1a1a1f, #0f0f13);
  border: 2px solid #7a3cff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 2px solid #7a3cff;
  background: #111;
  font-size: 16px;
}
.work-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px #7a3cff, 0 0 24px rgba(122, 60, 255, 0.6);
  border-color: #9d6bff;
}
.work-btn:hover .icon-box {
  box-shadow: 0 0 10px #7a3cff;
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}
.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35); 
  color: #9333ea;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.social-icons a:hover {
  background: rgba(122, 60, 255, 0.25);
  box-shadow: 0 0 12px rgba(122, 60, 255, 0.6);
  transform: translateY(-3px);
}
.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 8%;
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.about-content {
  flex: 1.2;
}
.title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
}
.title span {
  background: linear-gradient(90deg, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subtitle {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.badges span {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #7c3aed;
  background: rgba(124, 58, 237, 0.08);
  font-size: 14px;
  transition: all 0.3s ease;
}
.badges span:hover{
  background: rgba(122, 60, 255, 0.25);
  box-shadow: 0 0 12px rgba(122, 60, 255, 0.6);
  transform: translateY(-3px);
}
.description {
  font-size: 18px;
  line-height: 1.7;
  color: #cfcfe8a4;
  max-width: 600px;
}
@media (max-width: 900px) {
.container {
    flex-direction: column;
    text-align: center;
  }
.about-content {
    align-items: center;
  }
.badges {
    justify-content: center;
  }
}

/*responsive*/

@media (max-width: 1024px) {
.name, .nickname {
    font-size: 64px;
  }
.roles {
    font-size: 18px;
  }
.description1 {
    font-size: 16px;
    padding: 0 20px;
  }
.about {
    padding: 80px 5%;
  }
.title {
    font-size: 48px;
  }
.subtitle {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
.navbar {
    padding: 18px 20px;
  }
.logo {
    font-size: 18px;
    text-align: center;
  }
.nav-links a {
    font-size: 14px;
    padding: 10px 14px;
  }
.badge {
    margin-top: 20px;
    font-size: 12px;
    padding: 8px 16px;
  }
.name, .nickname {
    font-size: 42px;
    line-height: 1.1;
  }
.roles {
    font-size: 14px;
    padding: 0 10px;
  }
.description1 {
    font-size: 14px;
    padding: 0 15px;
  }
.work-btn {
    font-size: 14px;
    padding: 10px 18px 10px 20px;
  }
.icon-box {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
.social-icons a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
.about {
    padding: 60px 20px;
  }
.container {
    gap: 40px;
  }
.about-image img {
    max-width: 280px;
  }
.title {
    font-size: 36px;
  }
.subtitle {
    font-size: 18px;
  }
.badges span {
    font-size: 12px;
    padding: 8px 14px;
  }
.description {
    font-size: 14px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
.name, .nickname {
    font-size: 32px;
  }
.roles {
    font-size: 13px;
  }
.work-btn {
    width: 100%;
    justify-content: center;
  }
.social-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

ul.pre-loader {
  margin: 0;
  padding: 0;
}

ul.pre-loader li {
  list-style: none;
  display: inline-block;
  font-size: 5em;
  letter-spacing: 15px;
  color: #6a5f82;
  animation: pre-load 3s linear infinite;
}

@keyframes pre-load {
  0%,
  20%,
  60%,
  80%,
  100% {
    color: #6a5f82;
    text-shadow: none;
  }

  40% {
    color: #c587ff;
    text-shadow:
      0 0 7px #c17fff,
      0 0 50px #b565ff;
  }
}

/* animation delays */
ul.pre-loader li:nth-child(1) { animation-delay: 0.2s; }
ul.pre-loader li:nth-child(2) { animation-delay: 0.4s; }
ul.pre-loader li:nth-child(3) { animation-delay: 0.6s; }
ul.pre-loader li:nth-child(4) { animation-delay: 0.8s; }
ul.pre-loader li:nth-child(5) { animation-delay: 1s; }
ul.pre-loader li:nth-child(6) { animation-delay: 1.2s; }
ul.pre-loader li:nth-child(7) { animation-delay: 1.4s; }
ul.pre-loader li:nth-child(8) { animation-delay: 1.6s; }
ul.pre-loader li:nth-child(9) { animation-delay: 1.8s; }

@media screen and (max-width: 980px) {
  ul.pre-loader li {
    font-size: 30px;
    letter-spacing: 4px;
  }
}

/* Projects Section */
.projects {
  padding: 100px 8%;
}

.projects-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.section-description {
  font-size: 18px;
  color: #b9c0d0;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.projects-grid a{
  text-decoration: none;
  color: #fff;
}

.project-card {
  background: linear-gradient(145deg, #111218, #0b0c10);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 22px;
  padding: 22px;
  text-align: left;
  transition: all 0.4s ease;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 18px;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfcfe8a4;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(122, 60, 255, 0.35);
  border-color: #7a3cff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.contact {
  padding: 100px 8% 120px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}

.contact-info {
  text-align: left;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: #cfcfe8a4;
  margin-bottom: 14px;
}

.contact-info i {
  color: #9333ea;
  margin-right: 10px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  background: #0b0c10;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7a3cff;
  box-shadow: 0 0 12px rgba(122, 60, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }
}


/*project1 css*/
.project-header .container,
.project-overview .container,
.project-features .container,
.project-stack .container,
.project-gallery .container,
.project-challenges .container {
    display: block;
    max-width: 1200px;
    margin: auto;
}
.project-header {
    padding: 160px 8% 80px;
    text-align: center;
}
.project-header .title {
    font-size: 48px;
    margin-bottom: 15px;
}
.project-main-img {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.project-overview {
    padding: 80px 8%;
}
.project-overview  p{
  margin-top: 20px;
  line-height:27px;
}
.two-col {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.project-meta {
    background: rgba(255,255,255,0.04);
    padding: 25px;
    border-radius: 15px;
    min-width: 260px;
    margin-top: 50px;
}
.project-features {
    padding: 80px 8%;
    text-align: center;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.feature-card h3{
   margin:16px 0px 8px 0px;
}
.feature-card {
   background: rgba(255,255,255,0.03);
   padding: 30px;
   border-radius: 15px;
   transition: 0.3s ease;
}
.feature-card i{
   font-size:30px;
}
.feature-card i:hover{
   color:#7b3cff;
}
.feature-card:hover {
    transform: translateY(-8px);
}
.project-stack {
    padding: 80px 8%;
    text-align: center;
}
.stack-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}
.stack-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}
.tech-card {
    background: linear-gradient(145deg, #111218, #0b0c10);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6); 
}
.tech-card i {
    font-size: 42px;
    color: #a855f7;
    margin-bottom: 15px;
    transition: 0.3s ease;
}
.tech-card p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 45px rgba(0, 0, 0, 0.75);
}
.project-gallery {
    padding: 80px 8%;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.project-gallery img {
    width: 100%;
    border-radius: 15px;
}
.project-challenges {
    padding: 80px 8%;
}
.challenge-list {
    margin-top: 20px;
    line-height: 1.9;
}
.project-back {
  padding: 0px 7% 25px;
  text-align: left;   
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(145deg, #1a1a1f, #0f0f13);
  border: 2px solid #7a3cff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px #7a3cff, 0 0 24px rgba(122, 60, 255, 0.6);
  border-color: #9d6bff;
}
@media (max-width: 900px) {
.two-col {
      flex-direction: column;
  }
}

/* Skills Section */
.skills-section {
    margin-top: 40px;
}

.skills-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.project-img{
    width: 60%;
    height: auto;
    display: block;
    margin:0 auto;
    border-radius: 20px;
}