
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', sans-serif;
}


body{
  background: linear-gradient(135deg, #6c63ff, #8a84ff);
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}


.bg-lines{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}

.bg-lines svg{
  width:100%;
  height:100%;
}

.bg-lines path{
  fill:none;
  stroke: rgba(255,255,255,0.25);
  stroke-width:2;
  stroke-dasharray:1000;
  stroke-dashoffset:1000;
  animation:draw 8s linear infinite;
}

@keyframes draw{
  to{
    stroke-dashoffset:0;
  }
}


.container{
  max-width:1100px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-radius:20px;
  padding:60px;
  display:flex;
  align-items:center;
  gap:60px;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
  position:relative;
  z-index:1;
}


.about-img img{
  width:350px;
  border-radius:10px;
  /* filter: grayscale(100%); */ /* Removed to keep full color */
}


.about-content h1{
  font-size:48px;
  margin-bottom:20px;
}

.about-content p{
  color:#444;
  margin-bottom:15px;
  line-height:1.6;
}


.btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 28px;
  background:#6c63ff;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  background:#574fe0;
}


.socials{
  margin-top:25px;
  display:flex;
  align-items:center;
  gap:15px;
}

.socials span{
  color:#555;
}


.socials a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:50%;
  color:#333;
  font-size:18px;
  text-decoration:none;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}


.socials a:hover{
  transform:translateY(-5px);
  color:#fff;
}


.socials a:nth-child(2):hover{ /* X */
  background:#000;
}

.socials a:nth-child(3):hover{ /* Instagram */
  background:#e1306c;
}

.socials a:nth-child(4):hover{ /* LinkedIn */
  background:#0077b5;
}

.socials a:nth-child(5):hover{ /* Facebook */
  background:#3b5998;
}


@media(max-width:900px){
  .container{
    flex-direction:column;
    text-align:center;
    padding:40px;
  }

  .about-img img{
    width:250px;
  }

  .about-content h1{
    font-size:36px;
  }
}