 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      color: #ededed;
      overflow-x: hidden;
      background: #0a150a;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 10%;
      background: rgba(10, 21, 10, 0.9);
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      backdrop-filter: blur(10px);
      transition: 0.3s;
    }

    .header.scrolled {
      padding: 15px 10%;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .logo {
      position: relative;
      font-size: 28px;
      color: white;
      text-decoration: none;
      font-weight: 700;
    }

    .logo span {
      color: #0ef;
    }

    .navbar a {
      display: inline-block;
      font-size: 18px;
      color: white;
      text-decoration: none;
      font-weight: 500;
      margin-left: 35px;
      transition: 0.4s;
      position: relative;
    }

    .navbar a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #0ef;
      left: 0;
      bottom: -5px;
      transition: 0.4s;
    }

    .navbar a:hover::after,
    .navbar a.active::after {
      width: 100%;
    }

    .navbar a:hover,
    .navbar a.active {
      color: #0ef;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    .home {
      position: relative;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, #0a150a 0%, #0e1d0e 100%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 70px 10% 0;
      overflow: hidden;
    }

    .home-content {
      max-width: 600px;
      z-index: 2;
    }

    .home-content h3 {
      font-size: 32px;
      font-weight: 700;
      opacity: 0;
      animation: slideBottom 1s ease forwards;
      animation-delay: 0.7s;
    }

    .home-content h3:nth-of-type(2) {
      margin-bottom: 30px;
      animation: slideTop 1s ease forwards;
      animation-delay: 0.7s;
    }

    .home-content h3 span {
      color: #0ef;
    }

    .home-content h1 {
      font-size: 56px;
      font-weight: 700;
      margin: -3px 0;
      opacity: 0;
      animation: slideRight 1s ease forwards;
      animation-delay: 1s;
    }

    .home-content p {
      font-size: 20px;
      line-height: 1.6;
      margin: 20px 0 40px;
      opacity: 0;
      animation: slideLeft 1s ease forwards;
      animation-delay: 1.3s;
    }

    .typing-text {
      font-size: 34px;
      font-weight: 600;
      min-height: 70px;
    }

    .typing-text span {
      position: relative;
      color: #0ef;
    }

    .typing-text span::before {
      content: "Web Designer";
      color: #0ef;
      animation: words 20s infinite;
    }

    .typing-text span::after {
      content: "";
      position: absolute;
      width: calc(100% + 8px);
      height: 100%;
      background: #0a150a;
      border-left: 2px solid #0ef;
      right: -8px;
      animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
    }

    @keyframes cursor {
      to {
        border-left: 2px solid #0ef;
      }
    }

    @keyframes words {
      0%, 20% {
        content: "Web Designer";
      }
      21%, 40% {
        content: "Frontend Developer";
      }
      41%, 60% {
        content: "UI/UX Designer";
      }
      61%, 80% {
        content: "Web Developer";
      }
      81%, 100% {
        content: "Freelancer";
      }
    }

    @keyframes typing {
      10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95% {
        width: 0;
      }
      5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85% {
        width: calc(100% + 8px);
      }
    }

    .home-sci {
      opacity: 0;
      animation: slideTop 1s ease forwards;
      animation-delay: 1.6s;
    }

    .home-sci a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: transparent;
      border: 2px solid #0ef;
      border-radius: 50%;
      font-size: 20px;
      color: #0ef;
      text-decoration: none;
      margin: 30px 15px 30px 0;
      transition: 0.3s;
    }

    .home-sci a:hover {
      background: #0ef;
      color: #081b08;
      box-shadow: 0 0 20px #0ef;
      transform: translateY(-5px);
    }

    .btn-box {
      display: inline-block;
      padding: 12px 28px;
      background: #0ef;
      border-radius: 40px;
      font-size: 16px;
      color: #081b08;
      letter-spacing: 1px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.4s;
      opacity: 0;
      animation: slideTop 1s ease forwards;
      animation-delay: 1.9s;
      box-shadow: 0 0 5px #0ef, 0 0 25px #0ef;
      margin-right: 15px;
      margin-bottom: 10px;
    }

    .btn-box:hover {
      box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan;
      transform: scale(1.05);
    }

    .image-wrapper {
      position: relative;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      flex-shrink: 0;
      opacity: 0;
      animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
      animation-delay: 2.2s, 3.2s;
    }

    .aden {
      height: 100%;
      width: 100%;
      border-radius: 50%;
      object-fit:fill; 
      background: transparent;
      display: block;
    }

    .image-wrapper::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 6px solid #0ef;
      box-sizing: border-box;
      animation: rotateBorder 6s linear infinite;
      pointer-events: none;
      transform-origin: center center;
    }

    @keyframes rotateBorder {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes slideRight {
      0% {
        transform: translateX(-100px);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideLeft {
      0% {
        transform: translateX(100px);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideTop {
      0% {
        transform: translateY(100px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideBottom {
      0% {
        transform: translateY(-100px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes zoomIn {
      0% {
        transform: scale(0);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes floatImage {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-24px);
      }
      100% {
        transform: translateY(0);
      }
    }

    section {
      padding: 100px 10%;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .about {
      background: linear-gradient(135deg, #0e1d0e 0%, #0a150a 100%);
      color: #ededed;
    }

    .skills {
      background: linear-gradient(135deg, #0a150a 0%, #0e1d0e 100%);
      color: #ededed;
    }

    .portfolio {
      background: linear-gradient(135deg, #0e1d0e 0%, #0a150a 100%);
      color: #ededed;
    }

    .contact {
      background: linear-gradient(135deg, #0a150a 0%, #0e1d0e 100%);
      color: #ededed;
    }

    .section-title {
      font-size: 56px;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      width: 100%;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background: #0ef;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .about-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
      min-width: 300px;
    }

    .about-text h3 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #0ef;
    }

    .about-text p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .about-stats {
      display: flex;
      justify-content: space-between;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .stat {
      text-align: center;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      margin: 10px;
      flex: 1;
      min-width: 150px;
      transition: 0.3s;
    }

    .stat:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .stat i {
      font-size: 40px;
      color: #0ef;
      margin-bottom: 10px;
    }

    .stat h4 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .stat p {
      font-size: 16px;
      margin: 0;
    }

    .skills-content {
      width: 100%;
    }

    .skills-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      width: 100%;
    }

    .skill-category {
      background: rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 15px;
      border: 1px solid rgba(0, 255, 255, 0.1);
      transition: 0.05s;
      position: relative;
      overflow: hidden;
    }

    .skill-category::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
      transform: translateX(-100%);
      transition: 0.5s;
    }

    .skill-category:hover::before {
      transform: translateX(100%);
    }

    .skill-category:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .skill-category h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #0ef;
      display: flex;
      align-items: center;
    }

    .skill-category h3 i {
      margin-right: 10px;
    }

    .skill-item {
      margin-bottom: 20px;
    }

    .skill-info {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .skill-name {
      font-weight: 600;
    }

    .skill-percentage {
      color: #0ef;
    }

    .skill-bar {
      height: 10px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      overflow: hidden;
    }

    .skill-progress {
      height: 100%;
      background: #0ef;
      border-radius: 5px;
      position: relative;
      width: 0;
      transition: width 1.5s ease-in-out;
    }

    .skill-progress::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      animation: shimmer .5s infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .portfolio {
  background: linear-gradient(135deg, #0e1d0e 0%, #0a150a 100%);
  color: #ededed;
}

.portfolio-content {
  width: 100%;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: #0ef;
}

.portfolio-image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.portfolio-image {
  width: 100%;
  height: 220px;   /* adjust height if needed */
  object-fit: contain;  /* show full image without cutting */
  background: #111;     /* add dark background for empty spaces */
  display: block;
}


.portfolio-card:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-links {
  display: flex;
  gap: 20px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #081b08;
  color: #0ef;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: #0ef;
  color: #081b08;
  transform: scale(1.1);
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0ef;
  font-weight: 600;
}

.portfolio-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  background: rgba(0, 255, 255, 0.1);
  color: #0ef;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-card {
    margin: 0 10px;
  }
  
  .section-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .portfolio-content {
    padding: 20px;
  }
  
  .portfolio-content h3 {
    font-size: 20px;
  }
  
  .portfolio-content p {
    font-size: 14px;
  }
}
    .contact-container {
      display: flex;
      justify-content: space-between;
      gap: 50px;
      width: 100%;
      flex-wrap: wrap;
    }

    .contact-info {
      flex: 1;
      min-width: 300px;
    }

    .contact-info h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #0ef;
    }

    .contact-details {
      margin-bottom: 30px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      transition: 0.3s;
    }

    .contact-detail:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(10px);
    }

    .contact-detail i {
      font-size: 24px;
      color: #0ef;
      margin-right: 15px;
    }

    .contact-form {
      flex: 1;
      min-width: 300px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(0, 255, 255, 0.3);
      border-radius: 8px;
      color: #ededed;
      font-size: 16px;
      transition: 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #0ef;
      box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    }

    .form-group textarea {
      height: 150px;
      resize: vertical;
    }

    .submit-btn {
      background: #0ef;
      color: #081b08;
      border: none;
      padding: 12px 30px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.4s;
      display: block;
      margin: 0 auto;
    }

    .submit-btn:hover {
      box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 100px cyan, 0 0 200px cyan;
      transform: scale(1.05);
    }

    .footer {
      background: #0a150a;
      padding: 20px 10%;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer p {
      font-size: 16px;
    }

    .footer span {
      color: #0ef;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .home {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
      }

      .home-content {
        max-width: 100%;
        margin-bottom: 50px;
      }

      .image-wrapper {
        width: 300px;
        height: 300px;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(10, 21, 10, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        transition: 0.5s;
        z-index: 999;
      }

      .navbar.active {
        right: 0;
      }

      .navbar a {
        margin: 15px 0;
        font-size: 20px;
      }

      .menu-toggle {
        display: block;
        z-index: 1000;
      }

      .header.scrolled .menu-toggle {
        color: #0ef;
      }

      .section-title {
        font-size: 40px;
      }

      .about-content,
      .contact-container {
        flex-direction: column;
      }

      .about-stats {
        flex-direction: column;
      }

      .stat {
        margin: 10px 0;
      }

      .typing-text {
        font-size: 28px;
        min-height: 60px;
      }
    }

    @media (max-width: 480px) {
      .home-content h1 {
        font-size: 40px;
      }

      .home-content h3 {
        font-size: 24px;
      }

      .home-content p {
        font-size: 16px;
      }

      .section-title {
        font-size: 32px;
      }

  
    }
