body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
  }
  
  /* Navbar */
  nav {
    background-color: #1f1f1f;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: slideDown 1s ease-out;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ffe0;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #00ffe0;
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(145deg, #1e1e1e, #111111);
    box-shadow: inset 0 0 50px rgba(0, 255, 255, 0.05);
  }
  
  /* Typing Animation */
  .type-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .typewriter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    border-right: 2px solid #00ffe0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 2s steps(30, end) forwards;
    margin: 0 auto;
  }
  
  .remove-caret {
    border-right: none !important;
  }
  
  
  @keyframes typing {
    from { width: 0 }
    to { width: 19ch }
  }
  
  /* Fade In Subtitle */
  .fade-in-text {
    font-size: 1.3rem;
    color: #00ffe0;
    opacity: 0;
    animation: fadeIn 1.5s ease-in 2.2s forwards;
    margin-top: 0.75rem;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  /* Button */
  .btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #00ffe0;
    color: #121212;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #00ccb8;
  }
  
  /* About Section */
  .about {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
  }
  
  .about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00ffe0;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #1f1f1f;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #bbbbbb;
  }
  
  /* Nav Animation */
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  /* === Veil Technologies Page === */
  .veil-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem;
  }
  
  .veil-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #00ffe0;
  }
  
  .veil-post {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
  }
  
  .veil-post img {
    width: 250px;
    object-fit: cover;
  }
  
  .veil-info {
    padding: 1rem;
  }
  
  .veil-info h2 {
    margin-top: 0;
    color: #00ffe0;
  }
  
  .veil-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
    color: #cccccc;
  }
  
  .meta {
    font-size: 0.8rem;
    color: #999999;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .veil-post {
      flex-direction: column;
    }
  
    .veil-post img {
      width: 100%;
      height: auto;
    }
  }
  /* === Article Page Styling === */
.article-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    color: #dddddd;
    animation: fadeIn 1.2s ease-in;
  }
  
  .article-container h1 {
    font-size: 2.2rem;
    color: #00ffe0;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
  }
  
  .article-container .meta {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .article-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #ccc;
  }
  
  .article-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  }
  
  /* Fade animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive fix */
  @media (max-width: 768px) {
    .article-container h1 {
      font-size: 1.6rem;
    }
  
    .article-container p {
      font-size: 1rem;
    }
  }
/* === About Me with Image === */
.about.with-image {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .about-img img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  }
  
  .about-text {
    flex: 1;
    min-width: 280px;
  }
  
  .about-text h2 {
    color: #00ffe0;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ccc;
  }
  .site-footer {
    background-color: #1f1f1f;
    padding: 2rem;
    text-align: center;
    color: #bbbbbb;
    border-top: 1px solid #333;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-links a {
    margin: 0 10px;
    color: #00ffe0;
    font-size: 1.3rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #00ccb8;
  }
  
  .footer-links i {
    vertical-align: middle;
  }
  .projects-section {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    color: #00ffe0;
    margin-bottom: 2rem;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,255,255,0.05);
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .project-info {
    padding: 1rem;
  }
  
  .project-info h3 {
    margin: 0;
    color: #00ffe0;
  }
  
  .project-info p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
  }
  
  .project-link {
    color: #00ffe0;
    text-decoration: underline;
    font-weight: bold;
  }
  
  .cv-section {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

.cv-section ul {
  text-align: left;
  max-width: 700px;
  margin: 1rem auto;
  list-style-type: square;
  padding-left: 1.5rem;
}

.cv-section p {
  max-width: 800px;
  margin: 1rem auto;
  line-height: 1.6;
}

.download-box {
  margin-top: 2rem;
  text-align: center;
}
.doc-section {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.card {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,255,0.05);
  margin-bottom: 3rem;
}

.card h2 {
  color: #00ffe0;
  margin-bottom: 1.5rem;
}

.cv-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cv-columns h3 {
  margin-top: 1.5rem;
}

.card ul {
  padding-left: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cv-columns > div {
  flex: 1;
  min-width: 250px;
}

.card ul {
  padding-left: 1.2rem;
  line-height: 1.6;
}

.card p {
  line-height: 1.6;
  margin: 1rem 0;
  color: #ddd;
}

.download-box {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .cv-columns {
    flex-direction: column;
  }
}
.card h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
/* ===== DOCUMENTS PAGE STYLING ===== */
.doc-links {
  background-color: #1e1e1e;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.doc-links h3 {
  color: #00ffe0;
  margin-top: 1.5rem;
}

.doc-links p {
  font-size: 1.1rem;
  margin: 0.5rem 0 1.5rem;
}

.doc-links a {
  color: #00ffe0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.doc-links a:hover {
  color: #00ccb8;
}

.btn-container {
  text-align: center;
  margin-top: 2rem;
}

.btn {
  background-color: #00ffe0;
  color: #121212;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00ccb8;
}
