@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9fafb;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .nav-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-icon {
      border-radius: 8px;
      margin-right: 12px;
    }

    .logo-icon img{
      width: 80px;
      aspect-ratio: 1/1;
    }

    .logo h1 {
      font-size: 20px;
      font-weight: 700;
      color: #1f2937;
    }

    .nav-links {
      display: flex;
      gap: 24px;
    }

    .nav-links a {
      text-decoration: none;
      color: #6b7280;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #2563eb;
    }

    /* Sections */
    section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-title h2 {
      font-size: 36px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 16px;
    }

    .section-title p {
      font-size: 18px;
      color: #6b7280;
    }

    /* Intro Section */
    .intro {
      background: linear-gradient(135deg, #e0f2fe 0%, #f3e5f5 50%, #fff3e0 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
    }

    .intro-content {
      text-align: center;
      padding: 80px 0;
    }

    .avatar {
      width: 128px;
      height: 128px;
      margin: 0 auto 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
    }

    .intro h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #1f2937;
    }

    .intro h2 {
      font-size: 24px;
      font-weight: 300;
      margin-bottom: 24px;
      color: #6b7280;
    }

    .intro p {
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto 32px;
      color: #4b5563;
    }

    .cta-button {
      display: inline-block;
      background: white;
      color: #4b5563;
      padding: 16px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .cta-button:hover {
      background: #f9fafb;
    }

    /* Grid Layouts */
    .grid {
      display: grid;
      gap: 32px;
    }

    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-auto {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Cards */
    .card {
      background: white;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    }

    .skill-card {
      text-align: center;
      padding: 16px;
    }

    .skill-card i {
      font-size: 32px;
      margin-bottom: 8px;
    }

    .skill-card p {
      font-weight: 500;
      color: #4b5563;
    }

    /* Project Cards */
    .project-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
    }

    .project-card:hover {
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    }

    .project-image {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .project-1 {
      background: linear-gradient(135deg, #60a5fa, #a855f7);
    }

    .project-2 {
      background: linear-gradient(135deg, #34d399, #3b82f6);
    }

    .project-3 {
      background: linear-gradient(135deg, #a78bfa, #ec4899);
    }

    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .project-image:hover .project-overlay {
      opacity: 1;
    }

    .project-buttons {
      display: flex;
      gap: 16px;
    }

    .project-btn {
      padding: 8px 16px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .demo-btn {
      background: #3b82f6;
      color: white;
    }

    .demo-btn:hover {
      background: #2563eb;
    }

    .github-btn {
      background: #374151;
      color: white;
    }

    .github-btn:hover {
      background: #1f2937;
    }

    .project-content {
      padding: 24px;
    }

    .project-content h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #1f2937;
    }

    .project-content p {
      color: #6b7280;
      margin-bottom: 16px;
    }

    .tech-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .tech-tag {
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 500;
    }

    .tag-blue {
      background: #dbeafe;
      color: #1e40af;
    }

    .tag-green {
      background: #dcfce7;
      color: #166534;
    }

    .tag-purple {
      background: #f3e8ff;
      color: #7c3aed;
    }

    .tag-yellow {
      background: #fef3c7;
      color: #d97706;
    }

    .tag-red {
      background: #fee2e2;
      color: #dc2626;
    }

    .tag-orange {
      background: #fed7aa;
      color: #ea580c;
    }

    .tag-gray {
      background: #f3f4f6;
      color: #374151;
    }

    .project-link {
      color: #2563eb;
      font-weight: 500;
      text-decoration: none;
    }

    .project-link:hover {
      color: #1d4ed8;
    }

    /* Goals Section */
    .goals-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
    }

    .goal-card {
      padding: 32px;
      border-radius: 12px;
    }

    .goal-short {
      background: #eff6ff;
    }

    .goal-long {
      background: #faf5ff;
    }

    .goal-header {
      display: flex;
      align-items: center;
      margin-bottom: 24px;
    }

    .goal-icon {
      padding: 12px;
      border-radius: 50%;
      margin-right: 16px;
    }

    .icon-blue {
      background: #2563eb;
    }

    .icon-purple {
      background: #7c3aed;
    }

    .goal-icon i {
      color: white;
      font-size: 20px;
    }

    .goal-header h3 {
      font-size: 24px;
      font-weight: 600;
      color: #1f2937;
    }

    .goal-list {
      list-style: none;
    }

    .goal-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 16px;
      color: #4b5563;
    }

    .goal-list i {
      margin-right: 12px;
      margin-top: 4px;
    }

    .check-blue {
      color: #2563eb;
    }

    .check-purple {
      color: #7c3aed;
    }

    /* Education Cards */
    .education-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .education-card {
      background: white;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .education-header {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
    }

    .education-icon {
      padding: 12px;
      border-radius: 50%;
      margin-right: 16px;
    }

    .edu-blue {
      background: #dbeafe;
    }

    .edu-green {
      background: #dcfce7;
    }

    .edu-orange {
      background: #fed7aa;
    }

    .edu-blue i {
      color: #2563eb;
    }

    .edu-green i {
      color: #059669;
    }

    .edu-orange i {
      color: #ea580c;
    }

    .education-info h3 {
      font-size: 18px;
      font-weight: 600;
      color: #1f2937;
    }

    .education-info .date {
      font-size: 14px;
      color: #6b7280;
    }

    .education-school {
      font-weight: 500;
      margin-bottom: 8px;
    }

    .school-blue {
      color: #2563eb;
    }

    .school-green {
      color: #059669;
    }

    .school-orange {
      color: #ea580c;
    }

    .education-desc {
      font-size: 14px;
      color: #4b5563;
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
    }

    .contact-info h3 {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 24px;
      color: #1f2937;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 24px;
    }

    .contact-icon {
      padding: 12px;
      border-radius: 50%;
      margin-right: 16px;
    }

    .contact-blue {
      background: #dbeafe;
    }

    .contact-green {
      background: #dcfce7;
    }

    .contact-purple {
      background: #f3e8ff;
    }

    .contact-gray {
      background: #f3f4f6;
    }

    .contact-blue i {
      color: #2563eb;
    }

    .contact-green i {
      color: #059669;
    }

    .contact-purple i {
      color: #7c3aed;
    }

    .contact-gray i {
      color: #6b7280;
    }

    .contact-details p:first-child {
      font-weight: 500;
      color: #1f2937;
    }

    .contact-details p:last-child {
      color: #6b7280;
    }

    /* Form */
    .form-group {
      margin-bottom: 16px;
    }

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

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .submit-btn {
      width: 100%;
      background: #2563eb;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
      background: #1d4ed8;
    }

    /* Footer */
    footer {
      background: #1f2937;
      color: white;
      padding: 32px 0;
      text-align: center;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 16px;
    }

    .social-links a {
      color: #9ca3af;
      font-size: 20px;
      transition: color 0.3s ease;
    }

    .social-links a:hover {
      color: white;
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeIn 0.8s ease forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section {
      animation-delay: 0.3s;
    }

    /* Background Colors */
    .bg-white {
      background: white;
    }

    .bg-gray {
      background: #f9fafb;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .grid-2,
      .grid-3,
      .goals-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .intro h1 {
        font-size: 36px;
      }

      .section-title h2 {
        font-size: 28px;
      }

      .container {
        padding: 0 16px;
      }
    }

    @media (max-width: 480px) {
      .intro h1 {
        font-size: 28px;
      }

      .intro h2 {
        font-size: 20px;
      }

      section {
        padding: 60px 0;
      }
    }