/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background - Dark AI Theme with Pastel Highlights */
body {
    background: linear-gradient(135deg, #0B0F1E 0%, #2D1B59 50%, #8A2BE2 100%);
    color: #E0E0E0; /* Soft White */
    line-height: 1.6;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 60px;
    height: 65px;
    background: rgba(255, 255, 255, 0.08); /* Subtle Frosted Glass */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    position: fixed;
    width: 85%;
    top: 20px;
    left: 7.5%;
    z-index: 1000;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

/* Animated Logo */
.logo-img {
    width: 55px;  /* Adjusted for clear visibility */
    height: 55px;
    object-fit: contain;
    border-radius: 10px;
    margin-right: 12px; /* Space between logo and text */
    
    /* Animation */
    animation: logoGlow 3s infinite alternate ease-in-out;
}

/* Glow Animation */
@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 5px #9B5DE5) brightness(1);
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 15px #4F46E5) brightness(1.3);
        transform: scale(1.05);
    }
}

/* Title Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9B5DE5;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

/* Sub-text Animation */
@keyframes fadeInText {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-subtext {
    font-size: 1.2rem;
    color: #E0E0E0;
    text-align: center;
    animation: fadeInText 2s ease-in-out;
}


@keyframes matrix-reveal {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tagline {
    font-size: 1.3rem;
    font-weight: bold;
    font-style: italic;
    color: #E0E0E0;
    text-align: center;
    opacity: 0;
    animation: matrix-reveal 1.5s ease-out forwards;
}








/* Adjust the AI flowing line opacity to make it denser */
.ai-lines {
    opacity: 0.7; /* Increase from the previous setting */
}


/* Navigation Links */
nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #B5A2F3; /* Soft Metallic Purple */
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 14px;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255, 255, 255, 0.18);
    color: #E0E0E0;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
}


/* Fix spacing between tagline and buttons */
.hero-content .tagline {
    margin-bottom: 20px; /* Add space before buttons */
}
/* Profile Image */
.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #B5A2F3;
    box-shadow: 0px 6px 20px rgba(181, 162, 243, 0.5);
}

/* Text Styling */
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #E0E0E0;
    margin-top: 15px;
}

/* Buttons */
.btn, .resume-btn {
    background: linear-gradient(90deg, #6A00F4, #B5A2F3);
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.22);
    margin-top: 20px;
}

.btn:hover, .resume-btn:hover {
    transform: scale(1.08);
}


/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background: #E0E0E0;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  /* Mobile Navigation */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    nav ul {
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: rgba(11, 15, 30, 0.95);
      flex-direction: column;
      align-items: center;
      display: none;
      padding: 20px 0;
      border-radius: 0 0 12px 12px;
    }
  
    nav ul.active {
      display: flex;
    }
  
    nav ul li a {
      padding: 16px;
      font-size: 1.1rem;
    }
  
    header {
      padding: 14px 30px; /* Slightly reduce padding for mobile */
    }
  }
  