* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif ;
    scroll-behavior: smooth;
}

body {

    background-color: #0d0d0d;
    color: #fff;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #111;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s;
}

header .logo {
    font-size: 2.6em;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

 header .logo span {
      background: linear-gradient(45deg, #a855f7, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 25px;

    }

    nav ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

    nav ul li a:hover {
        color: #a855f7;
        border-bottom: #a855f7 2px solid;
    }

    .menu-btn {
        display: none;
        font-size: 1.8rem;
        color: #fff;
        cursor: pointer;
    }

    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 70px;
        right: 10%;
        background: #1a1a1a;
        flex-direction: column;
        width: 200px;
        border-radius: 10px;
        display: none;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
      }

      nav ul.active {
        display: flex;
      }

      nav ul li {
        margin: 15px 0;
        text-align: center;
      }

      .menu-btn {
        display: block;
      }
    }

    .hero {
        text-align: center;
        padding: 90px 20px 60px;
    }

    .hero img {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        margin-bottom: 20px;
         border: 3px solid #a855f7;
      box-shadow: 0 0 20px #a855f7;
      object-fit: cover;
    }

     .hero h1 {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hero h1 span {
      background: linear-gradient(45deg, #a855f7, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
        max-width: 600px;
        margin: 0 auto;
        color: #aaa;
        font-size: 1rem;
    }

    .buttons {
        margin-top: 25px;
    }

    .buttons button {
        margin: 8px;
        padding: 12px 28px;
        border-radius: 30px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-outline {
        background: none;
        border: 2px solid #a855f7;
      color: #a855f7;
    }

     .btn-outline:hover {
      background: #a855f7;
      color: #fff;
      box-shadow: 0 0 20px #a855f7;
    }

    .btn-primary {
      background: linear-gradient(45deg, #a855f7, #3b82f6);
      color: #fff;
      box-shadow: 0 0 15px rgba(168,85,247,0.5);
    }

    .btn-primary:hover {
      transform: scale(1.05);
    }

    section {
        padding: 60px 10%;
    }

    .section-title {
        text-align: center;
        font-size: 1.8em;
        font-weight: 600;
        color: #a855f7;
        margin-bottom: 40px;
    }

    .experience-icons {
        display: flex;
        justify-content: center;
        gap: 25px;
        font-size: 2em;
        color: #ccc;
    }

    .projects {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .project-card {
         background: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 25px rgba(168,85,247,0.3);
    }

    .project-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .project-card h3 {
      padding: 15px;
      color: #fff;
      font-size: 1.1em;
    }

    .experience-item {
      background: #1a1a1a;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      transition: 0.3s;
    }

    .experience-item:hover {
      transform: scale(1.02);
    }

    .experience-item h4 {
      color: #a855f7;
    }

    .experience-item p {
      color: #aaa;
      font-size: 0.95em;
      margin-top: 5px;
    }

    /* FOOTER */
    footer {
      text-align: center;
      padding: 30px;
      background: #111;
      color: #aaa;
      border-top: 1px solid #222;
    }

    footer a {
      color: #a855f7;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    footer .socials i {
      margin: 0 8px;
      font-size: 1.3em;
      transition: color 0.3s;
    }

    footer .socials i:hover {
      color: #3b82f6;
    }

    #contact {
  padding: 80px 10%;
  background: #0d0d0d;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  color: #a855f7;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.contact-info p {
  color: #aaa;
  margin-bottom: 10px;
  font-size: 0.95em;
}

.contact-details p i {
  color: #a855f7;
  margin-right: 10px;
}

.socials {
  margin-top: 20px;
}

.socials a {
  color: #a855f7;
  margin-right: 15px;
  font-size: 1.4em;
  transition: color 0.3s;
}

.socials a:hover {
  color: #3b82f6;
}

/* CONTACT FORM */
.contact-form {
  flex: 1;
  min-width: 280px;
  background: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(168,85,247,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95em;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a855f7;
  box-shadow: 0 0 10px rgba(168,85,247,0.4);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #a855f7, #3b82f6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
  }
}

.videos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
}

.video-card {
    text-align: center;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card video {
    border-radius: 10px;
    border: 1px solid #333;
    display: block;
    background: #000;
    max-width: 100%;
    width: auto;
}

.video-card h3 {
    padding: 15px;
    font-size: 1.2em;
    color: #fff;
}

.video-link {
    text-decoration: none;
    display: block;
}

.video-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transform: scale(1.05);
}

.video-placeholder i {
    font-size: 60px;
    color: #a855f7;
    margin-bottom: 15px;
}

.video-placeholder p {
    color: #fff;
    font-size: 1.1em;
    text-align: center;
}

.video-card p {
    padding: 0 15px 15px;
    color: #999;
    font-size: 0.9em;
}


