    :root {
      --primary: #e42c9d;
      --primary-dark: #5649c7;
      --secondary: #a29bfe;
      --accent: #00cec9;
      --dark: #2d3436;
      --header: deeppink;
      --light: #f5f6fa;
      --dark-bg: #efeffc;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    
    body {
      color: var(--dark);
      overflow-x: hidden;
      background-color: var(--dark-bg);
    }

    /* Accessibility and base typography improvements (minimal, non-destructive) */
    html { font-size: 16px; }
    body { line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--primary); text-decoration: none; }
    a:focus, a:hover { text-decoration: underline; }
    ul { margin: 0; padding: 0; }
    .container { padding-left: 1rem; padding-right: 1rem; }
    
    /* Navigation */
    nav {
      position: fixed;
      top: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      z-index: 1000;
      width: auto;
      transition: all 0.4s ease;
    }
    
    nav.scrolled {
      top: 0.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
      display: flex;
      align-items: center;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-radius: 50px;
      padding: 0.8rem 2rem;
      border: none;
      transition: all 0.4s ease;
      position: relative;
      box-shadow: none;
    }

    /* Neon border implementation */
    .nav-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 50px;
      padding: 2px;
      background: linear-gradient(
        45deg,
        #ff00cc,
        #6c5ce7,
        #00cec9,
        #6c5ce7,
        #ff00cc
      );
      background-size: 400%;
      z-index: -1;
      -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0.8;
      animation: neon-border 8s linear infinite;
    }

    @keyframes neon-border {
      0% {
        background-position: 0 0;
      }
      50% {
        background-position: 400% 0;
      }
      100% {
        background-position: 0 0;
      }
    }

    .nav-container:hover::before {
      opacity: 1;
      box-shadow: 
        0 0 10px rgba(108, 92, 231, 0.8),
        0 0 20px rgba(0, 206, 201, 0.6);
    }
    
    .logo {
      font-weight: 700;
      font-size: 1.5rem;
      margin-right: 2rem;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .logo:hover {
      transform: scale(1.05);
    }
    
    .logo img {
      width: 36px;
      height: 36px;
      margin-right: 0.8rem;
      border-radius: 50%;
    }
    
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    
    .nav-links a {
      text-decoration: none;
      color: var(--accent);
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: 0;
      left: 0;
      background: var(--gradient);
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }
    
    .nav-links a:hover {
      color: var(--primary);
    }
    
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
    }

    /* Mobile menu icons */
    .nav-links .mobile-icon {
      display: none;
      font-size: 1.2rem;
    }
    
    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 6rem 2rem 2rem;
      position: relative;
      overflow: hidden;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    
    .content-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    .content {
      max-width: 600px;
    }
    
    .greeting {
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 1rem;
      font-weight: 600;
    }
    
    h1 {
      font-family: 'New Times Romans', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
      font-size: 1.6rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
.name {
  font-size: 2rem;
  position: relative;
  font-family: 'Vladmir Script', 'Brush Script MT', cursive;
  display: inline-block;
  opacity: 0;
  background: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0); /* 3 gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeSlide 2s ease forwards;
}

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

    h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      font-weight: 600;
      color: var(--dark);
      min-height: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }
    
    .static-text {
      color: var(--dark);
      margin-right: 0.5rem;
    }
    
    .typing-container {
      position: relative;
      display: inline-block;
    }
    
    .typing-effect {
      color: var(--primary);
      font-weight: 40;
    }
    
    .typing-cursor {
      display: inline-block;
      width: 3px;
      height: 1.1em;
      background-color: var(--primary);
      margin-left: 2px;
      animation: blink 1s infinite;
      vertical-align: middle;
    }
    
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
    
    .description {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      color: #555;
    }
    
    .button-group {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .btn-primary {
      background: var(--gradient);
      color: white;
      box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
    }
    
    .btn-secondary:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }
    
    .social-icons {
      display: flex;
      gap: 1.2rem;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      color: var(--primary-dark);
      font-size: 1.3rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      text-decoration: none;
    }
    
    .social-icons a:hover {
      background: var(--gradient);
      color: white;
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    }
    
    .image-container {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      order: -1; /* Default for mobile - image first */
    }
    
    .profile-img-container {
      position: relative;
      width: 350px;
      height: 350px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .profile-img {
      width: 320px;
      height: 320px;
      object-fit: cover;
      border-radius: 50%;
      z-index: 2;
      position: relative;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .neon-frame {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(
        45deg,
        #ff00cc,
        #6c5ce7,
        #00cec9,
        #6c5ce7,
        #ff00cc
      );
      background-size: 400%;
      animation: neon-border 8s linear infinite;
      z-index: 1;
      box-shadow: 
        0 0 15px rgba(255, 0, 204, 0.7),
        0 0 30px rgba(108, 92, 231, 0.5),
        0 0 45px rgba(0, 206, 201, 0.3);
    }
    
    .neon-frame::after {
      content: '';
      position: absolute;
      top: 6px;
      left: 6px;
      right: 6px;
      bottom: 6px;
      background: var(--light);
      border-radius: 50%;
      z-index: -1;
    }
    
    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 5rem 0 2rem;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .footer-logo {
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      text-decoration: none;
    }
    
    .footer-logo img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 0.8rem;
    }
    
    .footer-about p {
      margin-bottom: 1.5rem;
      line-height: 1.6;
      opacity: 0.8;
    }
    
    .footer-social {
      display: flex;
      gap: 1rem;
    }
    
    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      text-decoration: none;
      justify-content: center;
      color: white;
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-links h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: white;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .footer-links h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: var(--gradient);
      border-radius: 3px;
    }
    
    .footer-links ul {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .footer-contact h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: white;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .footer-contact h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: var(--gradient);
      border-radius: 3px;
    }
    
    .footer-contact p {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      line-height: 1.6;
      opacity: 0.8;
    }
    
    .footer-contact i {
      color: var(--secondary);
      margin-top: 0.2rem;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 3rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 
    @media (max-width: 992px) {
      .content-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
      }
      
      h1 {
        font-size: 2.8rem;
      }
      
      h2 {
        font-size: 1.8rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }
      
      .static-text {
        margin-right: 0;
        margin-bottom: 0.5rem;
      }
      
      .button-group {
        justify-content: center;
      }
      
      .social-icons {
        justify-content: center;
      }
    }
    
    @media (max-width: 768px) {
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
        gap: 1.5rem;
      }
      
      .nav-links.active {
        transform: translateY(0);
      }
      
      .nav-links a {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
      }
      
      .nav-links a:hover {
        background: rgba(108, 92, 231, 0.1);
      }
      
      .nav-links .mobile-icon {
        display: inline-block;
        width: 24px;
        text-align: center;
      }
      
      h1 {
        font-size: 0.8rem;
      }
      
      h2 {
        font-size: 1rem;
        flex-direction: column;
      }
      
      .static-text {
        margin-right: 0;
        margin-bottom: 0.3rem;
      }
      
      .profile-img-container {
        width: 280px;
        height: 280px;
      }
      
      .profile-img {
        width: 250px;
        height: 250px;
      }
      
      /* Mobile-specific button styles */
      .button-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
      }
      
      .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 140px;
        justify-content: center;
      }
    }
    
    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
      
      h1 {
        font-size: 2rem;
      }
      .name{font-size: 2rem;}
      .hero {
        padding: 6rem 1rem 2rem;
      }
      
      /* Ensure image is at top on mobile */
      .content-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
          "image"
          "content";
      }
      
      .image-container {
        grid-area: image;
        order: -1;
      }
      
      .content {
        grid-area: content;
      }
      
      h2 {
        flex-direction: column;
        align-items: center;
      }
      
      .static-text {
        margin-right: 0;
        margin-bottom: 0.3rem;
      }
      
      /* Further button optimization for very small screens */
      .button-group {
        flex-direction: row;
        align-items: center;
      }
     
      .btn {
        width: 100%;
        max-width: 250px;
      }
    }
    
    /* Desktop specific - image on right */
    @media (min-width: 993px) {
      .image-container {
        order: 1; /* Image on right for desktop */
      }
    }
    
    #logo0, #logo1 {
      font-family: Brush Script MT; 
    }
    
    #logo0 {
      color: deeppink;
    }
    
    #logo1 {
      color: rgb(79, 193, 228);
    }
