/* 
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
body {
  /* font-family: Arial, sans-serif; 
  font-family: "Jomhuria", serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #8c4dcfdb, #2366dbcc); 
}
#navbar {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(211, 196, 219, 0.895);
  padding: 15px;
  display: flex;
  justify-content: center;
}
#navbar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}
#welcome-section {
  height: 100vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
}
h1::after{
  content:"🙋‍♀️";
}
#welcome-section p::after{
content:"👩‍💻🚀";
}
#projects {
  padding: 50px;
 
  text-align: center;
    color: white;

}
h2::before,
h2::after{
  content:"✨";
}
.project-tile {
  margin: 20px;
  display: inline-block;
  border: 2px solid #333;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
}
.project-tile img {
  display:block;
  height: calc(100% - 6.8rem);
    width: 100%;
    object-fit: cover;
}
.project-tile a{
   text-decoration:none;

}
.project-tile:hover{
transform: scale(1.1);
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
}
.project-tile p {
  padding: 10px;
  background: #333;
  color: white;
}
footer a {
  color: white;
  text-decoration: none;
  display: flex;
    justify-content: center;
    width: 100%;
    max-width: 980px;
    margin-top: 4rem;
    flex-wrap: wrap;
}
footer h2{
 color:white;
 font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-align: center;
}
.fa-github:before {
    content: "\f09b";
font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.fa-github:hover{
  transform: scale(1.2);
}
@media (max-width: 600px) {
  #navbar {
    flex-direction: column;
  }
  .project-tile {
    width: 100%;
  }
} */
 
    :root {
      --bg: #0d0d14;
      --bg2: #13131f;
      --bg3: #1a1a2e;
      --surface: #1e1e30;
      --surface2: #252538;
      --accent: #b48ef5;
      --accent2: #7c5cbf;
      --accent3: #e0c8ff;
      --text: #f0eafa;
      --text2: #a89dc4;
      --text3: #6b6080;
      --border: rgba(180,142,245,0.15);
      --border2: rgba(180,142,245,0.3);
      --green: #6be6b0;
      --blue: #6bbdf5;
      --pink: #f56bb5;
      --gold: #f5c76b;
      --radius: 14px;
      --radius-sm: 8px;
    }
    [data-theme="light"] {
      --bg: #f5f3ff;
      --bg2: #ede9fb;
      --bg3: #e4dff7;
      --surface: #fff;
      --surface2: #f0ecfa;
      --accent: #7c3feb;
      --accent2: #5a2bb5;
      --accent3: #4a1d9e;
      --text: #1a1228;
      --text2: #5a4a7a;
      --text3: #9080b0;
      --border: rgba(100,60,200,0.15);
      --border2: rgba(100,60,200,0.3);
      --green: #1b8a5a;
      --blue: #1a6bbf;
      --pink: #bf2580;
      --gold: #b87a10;
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 10px; }

    /* ─── BACKGROUND ORBS ─── */
    body::before, body::after {
      content: '';
      position: fixed;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.07;
      pointer-events: none;
      z-index: 0;
    }
    body::before {
      width: 600px; height: 600px;
      background: var(--accent);
      top: -200px; left: -200px;
    }
    body::after {
      width: 500px; height: 500px;
      background: var(--blue);
      bottom: -150px; right: -150px;
    }

    /* ─── NAVBAR ─── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 48px;
      background: rgba(13,13,20,0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: padding 0.3s;
    }
    [data-theme="light"] #navbar { background: rgba(245,243,255,0.8); }
    #navbar.scrolled { padding: 12px 48px; }
    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 20px;
      color: var(--accent3);
      letter-spacing: -0.5px;
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 32px; align-items: center; }
    .nav-links a {
      color: var(--text2);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.3px;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: width 0.3s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--accent3); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-right { display: flex; align-items: center; gap: 16px; }
    #theme-toggle {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text2);
      width: 40px; height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      transition: all 0.3s;
    }
    #theme-toggle:hover { background: var(--surface2); color: var(--accent); border-color: var(--border2); }
    .menu-btn {
      display: none;
      background: none; border: none;
      color: var(--text); font-size: 22px; cursor: pointer;
    }

    /* ─── MOBILE NAV ─── */
    #mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--bg);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
    }
    #mobile-nav.open { display: flex; }
    #mobile-nav a {
      font-family: 'Syne', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s;
    }
    #mobile-nav a:hover { color: var(--accent); }
    .mobile-close {
      position: absolute; top: 24px; right: 24px;
      background: none; border: none;
      color: var(--text2); font-size: 28px; cursor: pointer;
    }

    /* ─── SECTIONS ─── */
    section, footer { position: relative; z-index: 1; }

    /* ─── HERO ─── */
    #welcome-section {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 120px 24px 80px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(180,142,245,0.12);
      border: 1px solid var(--border2);
      color: var(--accent);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 999px;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.2s forwards;
    }
    .hero-badge span { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
    .hero-avatar {
      width: 110px; height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent2), var(--blue));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 36px; font-weight: 800;
      color: #fff;
      margin: 0 auto 28px;
      border: 3px solid var(--border2);
      box-shadow: 0 0 40px rgba(124,92,191,0.3);
      opacity: 0;
      animation: fadeUp 0.6s ease 0.1s forwards;
    }
    #welcome-section h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(42px, 7vw, 80px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      color: var(--text);
      margin-bottom: 16px;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.3s forwards;
    }
    #welcome-section h1 span { color: var(--accent); }
    .typing-wrapper {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--text2);
      font-weight: 300;
      min-height: 32px;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.4s forwards;
    }
    #typing-text { color: var(--accent3); font-weight: 500; }
    .typing-cursor {
      display: inline-block;
      width: 2px; height: 1em;
      background: var(--accent);
      margin-left: 2px;
      vertical-align: text-bottom;
      animation: blink 0.8s step-end infinite;
    }
    @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }
    .hero-btns {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.5s forwards;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      padding: 14px 30px;
      border-radius: var(--radius);
      font-weight: 500;
      text-decoration: none;
      font-size: 15px;
      transition: all 0.3s;
      border: none; cursor: pointer;
    }
    .btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,92,191,0.4); }
    .btn-outline {
      background: transparent;
      color: var(--text);
      padding: 14px 30px;
      border-radius: var(--radius);
      font-weight: 500;
      text-decoration: none;
      font-size: 15px;
      border: 1px solid var(--border2);
      transition: all 0.3s;
      cursor: pointer;
    }
    .btn-outline:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
    .scroll-hint {
      position: absolute; bottom: 36px;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--text3); font-size: 12px; letter-spacing: 1px;
      opacity: 0; animation: fadeUp 0.6s ease 0.8s forwards;
    }
    .scroll-hint i { animation: bounce 2s ease-in-out infinite; }
    @keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }

    @keyframes fadeUp {
      from { opacity:0; transform: translateY(20px); }
      to { opacity:1; transform: translateY(0); }
    }

    /* ─── SECTION TITLES ─── */
    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--text);
      margin-bottom: 16px;
    }
    .section-sub { color: var(--text2); font-size: 16px; max-width: 560px; margin-bottom: 52px; }
    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 100px 40px;
    }

    /* ─── DIVIDER ─── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2), transparent);
      margin: 0 40px;
    }

    /* ─── ABOUT ─── */
    #about { background: var(--bg2); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .about-text p { color: var(--text2); margin-bottom: 20px; font-size: 15.5px; }
    .about-text p strong { color: var(--accent3); font-weight: 500; }
    .about-cards { display: flex; flex-direction: column; gap: 16px; }
    .about-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 22px;
      display: flex; gap: 16px; align-items: flex-start;
      transition: border-color 0.3s;
    }
    .about-card:hover { border-color: var(--border2); }
    .about-card-icon {
      width: 44px; height: 44px; min-width: 44px;
      border-radius: var(--radius-sm);
      background: rgba(180,142,245,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; color: var(--accent);
    }
    .about-card h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
    .about-card p { color: var(--text2); font-size: 13.5px; margin: 0; line-height: 1.5; }
    .about-card small { color: var(--text3); font-size: 12px; }

    /* ─── SKILLS ─── */
    #skills { background: var(--bg3); }
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }
    .skill-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 22px;
      transition: transform 0.3s, border-color 0.3s;
    }
    .skill-card:hover { transform: translateY(-4px); border-color: var(--border2); }
    .skill-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 12px;
    }
    .skill-name { font-weight: 500; font-size: 14px; color: var(--text); }
    .skill-pct { font-size: 13px; color: var(--accent); font-weight: 600; }
    .skill-bar-bg {
      height: 5px;
      background: var(--surface2);
      border-radius: 999px;
      overflow: hidden;
    }
    .skill-bar {
      height: 100%; border-radius: 999px;
      background: linear-gradient(90deg, var(--accent2), var(--accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
    }
    .skill-bar.animated { transform: scaleX(1); }
    .soft-skills {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .soft-pill {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text2);
      font-size: 13px;
      padding: 6px 16px;
      border-radius: 999px;
      transition: all 0.2s;
    }
    .soft-pill:hover { border-color: var(--accent); color: var(--accent); }
    .skills-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }
    .skills-section-title {
      font-family: 'Syne', sans-serif;
      font-size: 16px; font-weight: 700;
      color: var(--text);
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 8px;
    }
    .skills-section-title::before {
      content: '';
      width: 3px; height: 16px;
      background: var(--accent);
      border-radius: 2px;
    }

    /* ─── SERVICES ─── */
    #services { background: var(--bg2); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
    }
    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent2), var(--accent));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .service-card:hover { transform: translateY(-5px); border-color: var(--border2); }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      font-size: 28px; color: var(--accent);
      margin-bottom: 16px;
    }
    .service-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 17px; font-weight: 700;
      color: var(--text); margin-bottom: 10px;
    }
    .service-card p { color: var(--text2); font-size: 14px; line-height: 1.6; }

    /* ─── PROJECTS ─── */
    #projects { background: var(--bg3); }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }
    .project-tile {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.35s;
      display: flex; flex-direction: column;
    }
    .project-tile:hover { transform: translateY(-6px); border-color: var(--border2); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
    .project-img-wrap {
      position: relative; overflow: hidden;
      height: 185px;
    }
    .project-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }
    .project-tile:hover .project-img-wrap img { transform: scale(1.08); }
    .project-overlay {
      position: absolute; inset: 0;
      background: rgba(13,13,20,0.75);
      display: flex; align-items: center; justify-content: center;
      gap: 12px;
      opacity: 0; transition: opacity 0.3s;
    }
    .project-tile:hover .project-overlay { opacity: 1; }
    .project-overlay a {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      padding: 10px 18px;
      border-radius: var(--radius-sm);
      font-size: 13px;
      text-decoration: none;
      display: flex; align-items: center; gap: 6px;
      transition: background 0.2s;
    }
    .project-overlay a:hover { background: rgba(180,142,245,0.3); }
    .project-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
    .project-tag {
      font-size: 11px; font-weight: 500;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(180,142,245,0.12);
      color: var(--accent);
      border: 1px solid rgba(180,142,245,0.2);
    }
    .project-body h3 {
      font-family: 'Syne', sans-serif;
      font-size: 17px; font-weight: 700;
      color: var(--text); margin-bottom: 8px;
    }
    .project-body p { color: var(--text2); font-size: 13.5px; line-height: 1.6; flex: 1; }
    .project-date { font-size: 12px; color: var(--text3); margin-top: 12px; }

    /* ─── CONTACT ─── */
    #contact { background: var(--bg2); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info h3 {
      font-family: 'Syne', sans-serif;
      font-size: 22px; font-weight: 700;
      color: var(--text); margin-bottom: 16px;
    }
    .contact-info p { color: var(--text2); font-size: 15px; margin-bottom: 32px; }
    .contact-links { display: flex; flex-direction: column; gap: 14px; }
    .contact-link {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none; color: var(--text);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px 18px;
      font-size: 14px;
      transition: all 0.3s;
    }
    .contact-link:hover { border-color: var(--accent); color: var(--accent); transform: translateX(4px); }
    .contact-link i { font-size: 18px; color: var(--accent); min-width: 24px; text-align: center; }
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 13px; color: var(--text2); font-weight: 500; }
    .form-group input, .form-group textarea {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 13px 16px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      outline: none;
      transition: border-color 0.2s;
      resize: vertical;
    }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
    .form-group input::placeholder, .form-group textarea::placeholder { color: var(--text3); }
    .form-submit {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: all 0.3s;
      display: flex; align-items: center; gap: 8px;
      align-self: flex-start;
    }
    .form-submit:hover { background: var(--accent2); transform: translateY(-2px); }
    .form-success {
      display: none;
      background: rgba(107,230,176,0.1);
      border: 1px solid rgba(107,230,176,0.3);
      color: var(--green);
      padding: 14px 20px;
      border-radius: var(--radius-sm);
      font-size: 14px;
    }

    /* ─── FOOTER ─── */
    #footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 40px;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 24px;
    }
    .footer-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 18px;
      color: var(--accent3);
    }
    .footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-nav a { color: var(--text2); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    .footer-nav a:hover { color: var(--accent); }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a {
      width: 38px; height: 38px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      color: var(--text2); font-size: 16px;
      text-decoration: none;
      transition: all 0.2s;
    }
    .footer-social a:hover { background: var(--surface2); color: var(--accent); border-color: var(--accent); }
    .footer-copy { color: var(--text3); font-size: 13px; text-align: center; width: 100%; }

    /* ─── SCROLL ANIMATION ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── BACK TO TOP ─── */
    #back-top {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 44px; height: 44px;
      background: var(--accent2);
      color: #fff;
      border: none; border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: all 0.3s;
      z-index: 999;
    }
    #back-top.show { opacity: 1; pointer-events: all; }
    #back-top:hover { background: var(--accent); transform: translateY(-3px); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .about-grid, .contact-grid, .skills-two-col { grid-template-columns: 1fr; gap: 36px; }
      #navbar { padding: 16px 24px; }
      .nav-links { display: none; }
      .menu-btn { display: block; }
      .section-inner { padding: 80px 24px; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .projects-grid, .services-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }
 