/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Background Gradient Animation */
  body {
    font-family: "Montserrat", sans-serif;
    min-height: 100vh;
    background: linear-gradient(270deg, #ff6ec4, #7873f5, #4facfe, #43e97b);
    background-size: 800% 800%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
    overflow-x: hidden;
    padding: 20px;
  }
  
  @keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
  }
  
  /* Floating Shapes */
  .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
    z-index: 0;
  }
  
  .shape1 { width: 200px; height: 200px; background: #ff8c00; top: 10%; left: 5%; }
  .shape2 { width: 150px; height: 150px; background: #00f2fe; bottom: 15%; right: 10%; }
  .shape3 { width: 180px; height: 180px; background: #ff3cac; top: 50%; left: 70%; }
  .shape4 { width: 120px; height: 120px; background: #43e97b; bottom: 20%; left: 15%; }
  
  @keyframes float {
    0% {transform: translateY(0) translateX(0);}
    100% {transform: translateY(-30px) translateX(20px);}
  }
  
  /* Header */
  header {
    text-align: center;
    padding: 2rem 0;
    z-index: 10;
    position: relative;
  }
  
  header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    font-family: "Roboto Slab", serif;
  }
  
  header p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  }
  
  .highlight {
    color: #ffeb3b;
  }
  
  /* Navigation */
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    margin-top: 1rem;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
  }
  
  nav a:hover {
    background: #fff;
    color: #4facfe;
    transform: scale(1.1);
  }
  
  /* Glassmorphism Card (Darker) */
  .card {
    background: rgba(0, 0, 0, 0.65);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
  }
  
  .card:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  /* Profile Pic (Larger) */
.profile-pic {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 1.5rem 0;
    border: 6px solid #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    object-fit: cover;
  }
  
  /* Project (Smaller Image) */
  .project img {
    width: 60%;         /* ginawa kong mas maliit */
    max-width: 400px;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
  }
  
  /* Button */
  button {
    background: linear-gradient(135deg, #ff6ec4, #7873f5);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  }
  
  button:hover {
    background: linear-gradient(135deg, #ff8c00, #ff3cac);
    transform: scale(1.1);
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  }
  