*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

.blur{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

.blur1{
  width:300px;
  height:300px;
  background:#3b82f6;
  top:100px;
  left:-100px;
}

.blur2{
  width:300px;
  height:300px;
  background:#9333ea;
  right:-100px;
  top:400px;
}

header{
  width:100%;
  padding:30px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,0.3);
  backdrop-filter:blur(12px);
}

.logo{
  font-size:24px;
  font-weight:700;
}

nav a{
  text-decoration:none;
  color:white;
  margin-left:30px;
  transition:0.3s;
}

nav a:hover{
  color:#3b82f6;
}

.hero{
  min-height:100vh;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 8%;
  gap:60px;
}

.hero-left{
  flex:1;
}

.tag{
  color:#3b82f6;
  margin-bottom:20px;
  letter-spacing:3px;
  font-size:14px;
}

.hero h1{
  font-size:80px;
  line-height:1;
  margin-bottom:25px;
}

.hero-text{
  color:#b5b5b5;
  max-width:500px;
  line-height:1.8;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn,
.btn-outline,
button{
  position:relative;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:16px 38px;
  border-radius:50px;
  border:2px solid #3b82f6;
  background:#000000;
  color:white;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  overflow:hidden;
  transition:0.4s ease;
  box-shadow:
    0 0 10px #2563eb,
    0 0 20px #2563eb,
    0 0 40px rgba(37,99,235,0.7);
}

.btn::before,
.btn-outline::before,
button::before{
  content:"";
  position:absolute;
  width:200%;
  height:200%;
  background:
    radial-gradient(
      circle,
      rgba(59,130,246,0.8) 0%,
      transparent 70%
    );
  animation:smokeMove 6s linear infinite;
  opacity:0.6;
}

.btn span,
.btn-outline span,
button span{
  position:relative;
  z-index:2;
}

.btn:hover,
.btn-outline:hover,
button:hover{
  transform:
    translateY(-5px)
    scale(1.03);
  box-shadow:
    0 0 20px #3b82f6,
    0 0 40px #3b82f6,
    0 0 80px rgba(59,130,246,0.9);
}

.btn:active,
.btn-outline:active,
button:active{
  transform:scale(0.97);
}

@keyframes smokeMove{
  0%{
    transform:
      translate(-20%,-20%)
      rotate(0deg);
  }
  100%{
    transform:
      translate(20%,20%)
      rotate(360deg);
  }
}

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.glass-card{
  width:100%;
  max-width:520px;
  background:
    rgba(255,255,255,0.05);
  border:
    1px solid rgba(255,255,255,0.08);
  border-radius:32px;
  padding:35px;
  backdrop-filter:blur(20px);
  transition:0.4s ease;
}

.card-top{
  display:flex;
  gap:10px;
  margin-bottom:30px;
}

.dot{
  width:14px;
  height:14px;
  border-radius:50%;
}

.red{
  background:#ff5f57;
}

.yellow{
  background:#febc2e;
}

.green{
  background:#28c840;
}

.card-content h3{
  font-size:28px;
  margin-bottom:15px;
}

.card-content p{
  color:#b5b5b5;
  line-height:1.7;
  margin-bottom:30px;
}

.mini-boxes{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

.mini-box{
  padding:12px 18px;
  border-radius:40px;
  background:
    rgba(255,255,255,0.06);
  border:
    1px solid rgba(255,255,255,0.08);
  font-size:14px;
  white-space:nowrap;
}

.about{
  padding:120px 8%;
}

.about h2{
  font-size:50px;
  margin-bottom:30px;
}

.about p{
  max-width:700px;
  color:#b5b5b5;
  line-height:2;
}

.projects{
  padding:120px 8%;
}

.projects h2{
  font-size:50px;
  margin-bottom:50px;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.project-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:40px;
  border-radius:24px;
  transition:0.4s;
}

.project-card:hover{
  transform:translateY(-10px);
  border-color:#3b82f6;
}

.project-card h3{
  margin-bottom:15px;
  font-size:24px;
}

.project-card p{
  color:#b5b5b5;
}

.contact{
  padding:120px 8%;
  text-align:center;
}

.contact h2{
  font-size:50px;
  margin-bottom:20px;
}

.contact p{
  color:#b5b5b5;
}

.dark-footer{
  width:100%;
  padding:100px 8% 40px;
  background:#030303;
  position:relative;
  overflow:hidden;
}

.footer-container{
  display:flex;
  justify-content:space-between;
  gap:80px;
  flex-wrap:wrap;
}

.footer-left{
  flex:1;
  min-width:280px;
}

.footer-left h2{
  font-size:42px;
  margin-bottom:25px;
  letter-spacing:2px;
}

.footer-left p{
  max-width:420px;
  line-height:1.9;
  color:#8a8a8a;
}

.footer-right{
  display:flex;
  gap:80px;
  flex-wrap:wrap;
}

.footer-column{
  display:flex;
  flex-direction:column;
}

.footer-column h4{
  margin-bottom:25px;
  font-size:18px;
  color:white;
}

.footer-column a{
  text-decoration:none;
  color:#8a8a8a;
  margin-bottom:16px;
  transition:0.3s;
}

.footer-column a:hover{
  color:#3b82f6;
  transform:translateX(5px);
}

.footer-line{
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.08);
  margin:70px 0 30px;
}

.footer-bottom{
  text-align:center;
}

.footer-bottom p{
  color:#666;
  font-size:14px;
  letter-spacing:1px;
}

.contact-header{
  width:100%;
  padding:30px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,0.3);
  backdrop-filter:blur(14px);
}

.contact-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(140px);
  z-index:-1;
}

.blur-left{
  width:350px;
  height:350px;
  background:#2563eb;
  top:120px;
  left:-100px;
}

.blur-right{
  width:350px;
  height:350px;
  background:#9333ea;
  right:-100px;
  top:420px;
}

.premium-contact{
  min-height:100vh;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:80px;
  padding:140px 8%;
  background:#050505;
}

.contact-left{
  flex:1;
}

.contact-small-text{
  color:#3b82f6;
  letter-spacing:4px;
  margin-bottom:20px;
  font-size:14px;
}

.contact-left h1{
  font-size:78px;
  line-height:1;
  margin-bottom:30px;
}

.contact-description{
  max-width:520px;
  color:#9f9f9f;
  line-height:1.9;
  margin-bottom:50px;
}

.contact-info-boxes{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

.info-box{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:25px 30px;
  border-radius:22px;
  backdrop-filter:blur(10px);
}

.info-box span{
  color:#777;
  display:block;
  margin-bottom:10px;
}

.info-box h3{
  font-size:18px;
  font-weight:500;
}

.contact-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.premium-form-box{
  width:100%;
  max-width:520px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;
  padding:35px;
  backdrop-filter:blur(20px);
  box-shadow:0 0 50px rgba(0,0,0,0.4);
}

.form-top{
  display:flex;
  gap:10px;
  margin-bottom:35px;
}

.circle{
  width:14px;
  height:14px;
  border-radius:50%;
}

.input-group{
  margin-bottom:25px;
}

.input-group label{
  display:block;
  margin-bottom:12px;
  color:#d1d1d1;
}

.input-group input,
.input-group textarea{
  width:100%;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:18px 20px;
  border-radius:18px;
  outline:none;
  color:white;
  font-family:'Poppins',sans-serif;
  font-size:15px;
}

.input-group textarea{
  height:180px;
  resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
  border-color:#3b82f6;
}

::placeholder{
  color:#777;
}

.projects-header{
  width:100%;
  padding:30px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,0.3);
  backdrop-filter:blur(14px);
}

.project-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(150px);
  z-index:-1;
}

.blur-one{
  width:350px;
  height:350px;
  background:#2563eb;
  top:100px;
  left:-100px;
}

.blur-two{
  width:350px;
  height:350px;
  background:#9333ea;
  right:-100px;
  top:500px;
}

.projects-page{
  min-height:100vh;
  padding:160px 8% 100px;
  background:#050505;
}

.projects-title{
  margin-bottom:70px;
}

.projects-title p{
  color:#3b82f6;
  letter-spacing:4px;
  margin-bottom:20px;
}

.projects-title h1{
  font-size:72px;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.modern-project-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;
  overflow:hidden;
  backdrop-filter:blur(20px);
  transition:0.4s ease;
}

.modern-project-card:hover{
  transform:translateY(-12px);
  border-color:#3b82f6;
  box-shadow:
    0 0 20px rgba(59,130,246,0.2),
    0 0 40px rgba(59,130,246,0.1);
}

.project-image{
  width:100%;
  height:240px;
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #9333ea
    );
}

.second-image{
  background:
    linear-gradient(
      135deg,
      #0ea5e9,
      #2563eb
    );
}

.third-image{
  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #ec4899
    );
}

.project-content{
  padding:35px;
}

.project-content h2{
  font-size:28px;
  margin-bottom:18px;
}

.project-content p{
  color:#9f9f9f;
  line-height:1.8;
  margin-bottom:30px;
}

.project-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.project-tags span{
  padding:10px 18px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:40px;
  font-size:14px;
}

.premium-skill-card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  background:
    rgba(255,255,255,0.05);
  border:
    1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(20px);
  padding:40px;
  transition:0.5s ease;
}

.premium-skill-card:hover{
  transform:
    translateY(-12px);
  border-color:#3b82f6;
  box-shadow:
    0 0 30px rgba(59,130,246,0.2),
    0 0 60px rgba(147,51,234,0.15);
}

.skill-glow{
  position:absolute;
  width:220px;
  height:220px;
  background:
    radial-gradient(
      circle,
      rgba(59,130,246,0.35),
      transparent 70%
    );
  top:-80px;
  right:-80px;
  filter:blur(30px);
}

.skill-content{
  position:relative;
  z-index:2;
}

.skill-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:30px;
  margin-bottom:30px;
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #9333ea
    );
  box-shadow:
    0 0 20px rgba(59,130,246,0.4);
}

.premium-skill-card h3{
  font-size:30px;
  margin-bottom:20px;
}

.premium-skill-card p{
  color:#a1a1aa;
  line-height:1.9;
  margin-bottom:30px;
}

.skill-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.skill-tags span{
  padding:10px 18px;
  border-radius:40px;
  background:
    rgba(255,255,255,0.06);
  border:
    1px solid rgba(255,255,255,0.08);
  font-size:14px;
  transition:0.3s;
}

.skill-tags span:hover{
  background:#2563eb;
}

/* ABOUT PAGE STYLES */

.about-header{
  width:100%;
  padding:30px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,0.3);
  backdrop-filter:blur(12px);
}

.about-page{
  min-height:100vh;
  padding:160px 8% 120px;
  background:#050505;
}

.about-bio-section{
  text-align:center;
  margin-bottom:90px;
}

.about-tag{
  color:#3b82f6;
  letter-spacing:4px;
  margin-bottom:20px;
  font-size:14px;
}

.about-bio-section h1{
  font-size:68px;
  margin-bottom:30px;
}

.about-summary{
  max-width:900px;
  margin:auto;
  color:#a1a1aa;
  line-height:2;
  font-size:17px;
}

.top-image-section{
  display:flex;
  justify-content:center;
  margin-bottom:60px;
}

.top-image-box{
  width:auto;
  height:auto;
  position:relative;
}

.top-image-glow{
  position:absolute;
  width:220px;
  height:220px;
  background:
    radial-gradient(
      circle,
      rgba(59,130,246,0.35),
      transparent 70%
    );
  top:-80px;
  right:-80px;
  filter:blur(30px);
}

.top-image-box img{
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:40px;
  position:relative;
  z-index:2;
}

.skills-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
  margin-top:80px;
}

/* RESPONSIVE STYLES */

@media(max-width:1024px){
  .hero{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding-top:180px;
    gap:70px;
  }

  .hero-left{
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .hero h1{
    font-size:60px;
  }

  .hero-text{
    max-width:700px;
  }

  .glass-card{
    width:100%;
    max-width:500px;
  }
}

@media(max-width:900px){
  .hero{
    flex-direction:column;
    padding-top:140px;
  }

  .hero h1{
    font-size:52px;
  }

  .glass-card{
    width:100%;
  }

  header{
    flex-direction:column;
    gap:20px;
  }
}

@media(max-width:768px){
  header,
  .about-header,
  .projects-header,
  .contact-header{
    flex-direction:column;
    gap:20px;
    padding:25px 5%;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
  }

  nav a{
    margin-left:0;
  }

  .hero{
    padding:170px 5% 80px;
  }

  .hero h1{
    font-size:48px;
    line-height:1.1;
  }

  .hero-text{
    font-size:15px;
  }

  .hero-buttons{
    flex-direction:column;
    width:100%;
  }

  .btn,
  .btn-outline{
    width:100%;
  }

  .glass-card{
    width:100%;
    padding:25px;
  }

  .card-content h3{
    font-size:26px;
  }

  .mini-boxes{
    justify-content:center;
  }

  .about{
    flex-direction:column;
    padding:100px 5%;
  }

  .about h2{
    font-size:42px;
  }

  .projects,
  .projects-page,
  .contact-page{
    padding:100px 5%;
  }

  .project-grid,
  .projects-grid,
  .skills-grid{
    grid-template-columns:1fr;
  }

  .premium-contact{
    flex-direction:column;
    padding-top:180px;
  }

  .contact-box,
  .premium-form-box{
    width:100%;
  }

  .footer-content,
  .footer-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .footer-right{
    gap:50px;
  }

  .premium-form-box{
    padding:25px;
  }

  .top-image-box{
    width:260px;
    height:440px;
  }

  .about-bio-section h1{
    font-size:42px;
  }

  .about-summary{
    font-size:15px;
  }

  .projects-title h1{
    font-size:48px;
  }

  .projects-header{
    flex-direction:column;
    gap:20px;
  }
}

@media(max-width:480px){
  .hero h1{
    font-size:38px;
  }

  .hero-text{
    font-size:14px;
  }

  .tag,
  .small-text,
  .contact-small-text,
  .about-tag{
    font-size:12px;
    letter-spacing:2px;
  }

  .glass-card{
    padding:20px;
    border-radius:24px;
  }

  .card-content h3{
    font-size:22px;
    text-align:center;
  }

  .card-content p{
    text-align:center;
    font-size:14px;
  }

  .mini-boxes{
    gap:10px;
  }

  .mini-box{
    font-size:12px;
    padding:10px 14px;
  }

  .project-content{
    padding:25px;
  }

  .project-content h2{
    font-size:22px;
  }

  .contact-left h1,
  .about-bio-section h1,
  .projects-title h1{
    font-size:38px;
  }

  .about-summary,
  .contact-description{
    font-size:14px;
  }

  .premium-skill-card,
  .skill-card{
    padding:25px;
  }

  .skill-icon{
    width:60px;
    height:60px;
    font-size:24px;
  }

  .btn,
  .btn-outline,
  button{
    padding:14px 25px;
    font-size:14px;
  }
}
