/* Base Styles and Variables */
:root {
    --background: #16182c;
    --foreground: #e3eaf4;
    --card: #1c2033;
    --card-foreground: #e3eaf4;
    --primary: #5f88e5;
    --primary-foreground: #e3eaf4;
    --secondary: #1f2641;
    --secondary-foreground: #e3eaf4;
    --muted: #1f2641;
    --muted-foreground: #a6b0c3;
    --accent: #7966e9;
    --accent-foreground: #e3eaf4;
    --destructive: #9b1e1e;
    --destructive-foreground: #f4f7fa;
    --border: #212b45;
    --input: #212b45;
    --ring: #375ce6;
    --radius: 0.5rem;
    --font-inter: 'Inter', sans-serif;
    --font-code: 'Fira Code', monospace;
    --transition-standard: all 0.3s ease;
  }

  
:root[data-theme="light"] {
    --background: #ffffff;
    --foreground: #16182c;
    --card: #f4f4f4;
    --card-foreground: #16182c;
    --primary: #375ce6;
    --primary-foreground: #ffffff;
    --secondary: #e3eaf4;
    --secondary-foreground: #16182c;
    --muted: #e3eaf4;
    --muted-foreground: #4a4a4a;
    --accent: #4a76d7;
    --accent-foreground: #ffffff;
    --border: #d1d5db;
    --input: #d1d5db;
    --ring: #375ce6;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-inter);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
  }

 /*  Scrollbar Styles */


::-webkit-scrollbar {
    width: 8px; 
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary), var(--accent)); 
    border-radius: 4px; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--accent), var(--primary)); 
  }
  
  ::-webkit-scrollbar-track {
    background: var(--background); 
    border-radius: 4px;
  }
  
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section-padding {
    padding: 5rem 1.5rem;
  }
  

/* Theme Toggle Button */
 .theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--primary-foreground);
    border: 2px solid var(--accent); /* Add a border for better visibility */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
    transition: var(--transition-standard);
  }
  
  .theme-toggle:hover {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
  }
  
  .theme-toggle i {
    font-size: 1.5rem; /* Increase icon size */
    transition: transform 0.3s ease;
  }
  
  .theme-toggle:active i {
    transform: rotate(20deg);
  }

  /* Background Elements */
  .background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
  }
  
  .bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
  }
  
  .bg-element-1 {
    top: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background-color: rgba(95, 136, 229, 0.05);
  }
  
  .bg-element-2 {
    bottom: 5rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background-color: rgba(121, 102, 233, 0.05);
  }
  
  .code-element {
    position: absolute;
    top: 30%;
    left: 45%;
    font-family: var(--font-code);
    font-size: 9rem;
    color: rgba(95, 136, 229, 0.1);
    animation: float 4s ease-in-out infinite;
    display: none;
  }
  
  .code-element-2 {
    top: 30%;
    right: 15%;
    left: auto;
    color: rgba(121, 102, 233, 0.1);
    animation-delay: 2s;
  }
  
  @media (min-width: 768px) {
    .code-element {
      display: block;
    }
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
  }
  
  .text-gradient {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-description {
    max-width: 32rem;
    margin: 0 auto 1.5rem;
    color: var(--muted-foreground);
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: var(--transition-standard);
    padding: 1rem 0;
  }
  
  .navbar.scrolled {
    background-color: rgba(22, 24, 44, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
  }
  
  .logo-icon {
    position: relative;
  }
  
  .logo-terminal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.5em;
    color: var(--accent);
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-link {
    position: relative;
    padding: 0.25rem 0.5rem;
    margin: 0 0.5rem;
    border-radius: var(--radius);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .nav-link.active {
    color: var(--primary);
  }
  
  .menu-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .close-icon {
    display: none;
  }
  
  .menu-toggle.active .menu-icon {
    display: none;
  }
  
  .menu-toggle.active .close-icon {
    display: block;
  }
  
  .nav-mobile {
    display: none;
    flex-direction: column;
    background-color: var(--background);
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
  }
  
  .nav-mobile.show {
    display: flex;
  }
  
  .nav-mobile .nav-link {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    margin: 0.25rem 0;
  }
  
  @media (min-width: 768px) {
    .nav-desktop {
      display: flex;
      align-items: center;
    }
    
    .menu-toggle {
      display: none;
    }
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-standard);
  }
  
  .btn i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
  }
  
  .btn-primary:hover {
    background-color: #4a76d7;
  }
  
  .btn-primary:hover i {
    transform: translateY(2px);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
  }
  
  .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .btn-sm {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
  }
  
  .btn-full {
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .hero-text {
    max-width: 32rem;
  }
  
  .hero-text .subtitle {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .hero-text .title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-text .description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero-visual {
    display: none;
  }
  
  .expertise-circle {
    position: relative;
    width: 20rem;
    height: 20rem;
  }
  
  .expertise-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(95, 136, 229, 0.2);
    animation: pulse 2s infinite;
  }
  
  .expertise-circle::after {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 50%;
    background-color: rgba(95, 136, 229, 0.4);
    backdrop-filter: blur(10px);
  }
  
  .expertise-content {
    position: absolute;
    inset: 2rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--primary), var(--accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 1rem;
    z-index: 1;
  }
  
  .icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .icon-container i {
    font-size: 2rem;
    animation: pulse 2s infinite;
  }
  
  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .tech-tags span {
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    font-size: 0.75rem;
  }
  
  @media (min-width: 1024px) {
    .hero-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .hero-text .title {
      font-size: 3.5rem;
    }
    
    .hero-visual {
      display: flex;
      justify-content: center;
    }
  }
  
  /* Skills Section */
  .skills {
    background-color: rgba(31, 38, 65, 0.3);
  }
  
  .code-snippet {
    font-family: var(--font-code);
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
    color: rgba(95, 136, 229, 0.8);
    animation: pulse 3s infinite;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
  
  .code-snippet pre {
    overflow-x: auto;
    padding: 0.5rem;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .skill-card {
    background-color: rgba(28, 32, 51, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(33, 43, 69, 0.5);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition-standard);
  }
  
  .skill-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }
  
  .skill-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .skill-header i {
    color: var(--primary);
    margin-right: 0.75rem;
  }
  
  .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .skill-tags span {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--secondary);
    border-radius: 1rem;
    font-size: 0.75rem;
    animation: skillsPulse 3s infinite;
  }
  
  @media (min-width: 768px) {
    .skills-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Projects Section */
  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-card {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(33, 43, 69, 0.5);
    transition: var(--transition-standard);
  }
  
  .project-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }
  
  .project-image {
    height: 12rem;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.05);
  }
  
  .project-content {
    padding: 1.5rem;
  }
  
  .project-content h3 {
    margin-bottom: 0.75rem;
  }
  
  .project-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
  }
  
  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .project-tags span {
    padding: 0.25rem 0.75rem;
    background-color: transparent;
    border: 1px solid rgba(33, 43, 69, 0.8);
    border-radius: 1rem;
    font-size: 0.75rem;
  }
  
  .project-links {
    display: flex;
    justify-content: space-between;
  }
  
  @media (min-width: 768px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Contact Section */
  .contact {
    background-color: rgba(31, 38, 65, 0.2);
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-container {
    background-color: rgba(28, 32, 51, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(33, 43, 69, 0.5);
    border-radius: var(--radius);
  }
  
  .contact-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .input-container {
    position: relative;
  }
  
  .input-container i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
  }
  
  .input-container input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background-color: var(--background);
    border: 1px solid var(--input);
    border-radius: var(--radius);
    color: var(--foreground);
    font-family: var(--font-inter);
  }
  
  textarea {
    width: 100%;
    min-height: 8rem;
    padding: 0.75rem 1rem;
    background-color: var(--background);
    border: 1px solid var(--input);
    border-radius: var(--radius);
    color: var(--foreground);
    font-family: var(--font-inter);
    resize: vertical;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-desc {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
  }
  
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-link {
    display: flex;
    align-items: center;
  }
  
  .contact-link i {
    color: var(--primary);
    margin-right: 1rem;
  }
  
  .contact-link a {
    transition: var(--transition-standard);
  }
  
  .contact-link a:hover {
    color: var(--primary);
  }
  
  .note {
    color: var(--muted-foreground);
  }
  
  @media (min-width: 1024px) {
    .contact-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Footer */
  .footer {
    background-color: var(--secondary);
    padding: 2rem ;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .footer-brand {
    margin-bottom: 1.5rem;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: var(--transition-standard);
  }
  
  .social-links a:hover {
    background-color: rgba(95, 136, 229, 0.2);
  }
  
  .copyright {
    text-align: center;
    border-top: 1px solid rgba(33, 43, 69, 0.3);
    padding-top: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .copyright i {
    display: inline-block;
    margin-right: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
    }
    
    .footer-brand {
      margin-bottom: 0;
    }
  }
  
  /* About Page */
  .about-page {
    padding-top: 7rem;
  }
  
  .page-title {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  /* New compact about image styling */
  .about-image-compact {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .hexagon-wrapper {
    position: relative;
    width: 230px;
    height: 230px;
    margin: 0 auto;
  }
  
  .hexagon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--accent));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .hexagon:hover {
    transform: scale(1.05);
  }
  
  .hexagon img {
    width: 92%;
    height: 92%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }
  
  .floating {
    position: absolute;
    bottom: -10px;
    right: 0;
    background-color: var(--secondary);
    padding: 0.75rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
  }
  
  .keyword {
    color: var(--primary);
  }
  
  .variable {
    color: var(--accent);
  }
  
  /* New about content styling */
  .about-section {
    background-color: rgba(31, 38, 65, 0.2);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-summary {
    margin-bottom: 1.5rem;
  }
  
  .lead-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--foreground);
  }
  
  .about-highlights {
    display: grid;
    color: var(--muted-foreground);
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .highlight-card {
    background-color: rgba(28, 32, 51, 0.5);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid rgba(33, 43, 69, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .highlight-card i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .highlight-card:nth-child(2) i {
    color: var(--accent);
  }
  
  .highlight-card:nth-child(3) i {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .highlight-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .highlight-card p {
    color: var(--muted-foreground);
    line-height: 1.5;
    font-size: 0.9rem;
  }
  
  .code-block {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    font-family: var(--font-code);
    font-size: 0.875rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  
  .code-title {
    font-family: var(--font-code);
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .comment {
    color: var(--primary);
  }
  
  @media (min-width: 768px) {
    .about-highlights {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .hexagon-wrapper {
      width: 180px;
      height: 180px;
    }
  }
  
  @media (min-width: 1024px) {
    .about-content {
      grid-template-columns: auto 1fr;
      align-items: center;
    }
    
    .hexagon-wrapper {
      margin: 0;
    }
  }
  
  /* Animations - Enhanced */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.7;
      transform: scale(1.05);
    }
  }
  
  @keyframes skillsPulse {
    0%, 100% {
      opacity: 1;
      background-color: var(--secondary);
    }
    50% {
      opacity: 0.8;
      background-color: rgba(55, 92, 230, 0.1);
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
  }
  
  .animate-fade-in-right {
    animation: slideInRight 0.8s ease-out forwards;
  }
  
  /* Scroll Animation - Enhanced */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: none; /* Remove transition to rely on animation */
    will-change: opacity, transform; /* Performance optimization */
  }
  
  .animate-on-scroll.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
  }
  
  /* Animation delays */
  .delay-100 {
    animation-delay: 100ms;
  }
  
  .delay-200 {
    animation-delay: 200ms;
  }
  
  .delay-300 {
    animation-delay: 300ms;
  }
  
  .delay-400 {
    animation-delay: 400ms;
  }
  
  .delay-500 {
    animation-delay: 500ms;
  }
  
  .delay-600 {
    animation-delay: 600ms;
  }
  
  .delay-800 {
    animation-delay: 800ms;
  }
  
  /* Typing animation */
  .typing-animation {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary);
    width: 0;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes blink-caret {
    from, to {
      border-color: transparent;
    }
    50% {
      border-color: var(--primary);
    }
  }
  