:root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --color-background: hsl(210, 40%, 98%);
    --color-foreground: hsl(222.2, 84%, 4.9%);
    --color-card: hsl(0, 0%, 100%);
    --color-card-foreground: hsl(222.2, 84%, 4.9%);
    --color-muted: hsl(215.4, 16.3%, 46.9%);
    --color-muted-background: hsl(210, 40%, 96.1%);
    --color-accent: hsl(259, 41%, 50%);
    --color-accent-foreground: hsl(210, 40%, 98%);
    --color-accent-muted: hsl(259, 41%, 45%);
    --color-navy-50: hsl(210, 40%, 98%);
    --color-navy-100: hsl(214.3, 31.8%, 91.4%);
    --color-navy-800: hsl(217.2, 32.6%, 17.5%);
    --color-navy-900: hsl(222.2, 47.4%, 11.2%);
    --color-destructive: hsl(0, 84.2%, 60.2%);
    --color-border: hsl(214.3, 31.8%, 91.4%);
    
    --radius: 0.5rem;
    --header-height: 4rem;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    font-size: 16px;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  .red-text {
    color: red;
  }
  
  
  
  .logo-image {
    display: flex;
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  .hidden {
    display: none !important;
  }
  
  .text-center {
    text-align: center;
  }
  
  .pt-header {
    padding-top: calc(var(--header-height) + 24px);
  }
  
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .mb-8 {
    margin-bottom: 2rem;
  }
  
  .mb-12 {
    margin-bottom: 3rem;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
  
  .section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .text-lg {
    font-size: 1.125rem;
  }
  
  .text-muted {
    color: var(--color-muted);
  }
  
  .text-accent {
    color: var(--color-accent);
  }
  
  .text-black {
    color: var(--color-foreground);
  }
  
  .text-description {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
  }
  
  /* Layout */
  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    height: var(--header-height);
    background-color: transparent;
  }
  
  .fixed-header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .fixed-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-foreground);
    font-family: var(--font-display);
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--color-foreground);
  }
  
  .mobile-nav {
    display: none;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    animation: fadeIn 0.3s ease;
  }
  
  .mobile-nav.active {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    text-decoration: none;
    color: var(--color-foreground);
  }
  
  .mobile-nav-link.active {
    color: var(--color-accent);
    font-weight: 500;
  }
  
  .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--color-foreground);
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: var(--color-accent);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link.active {
    color: var(--color-accent);
  }
  
  .nav-link.active::after {
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    padding: calc(var(--header-height) + 40px) 0 4rem;
    overflow: hidden;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    max-width: 32rem;
  }
  
  .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero-image {
    position: relative;

    order: 1;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 9999px;
    background-color: rgba(105, 90, 205, 0.1);
    padding: 1rem;
  }
  
  .image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(105, 90, 205, 0.2);
  }
  
  .decoration-block-1 {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: var(--color-navy-100);
    border-radius: 0.5rem;
    z-index: -10;
  }
  
  .decoration-block-2 {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(105, 90, 205, 0.1);
    border-radius: 0.5rem;
    z-index: -10;
  }
  
  .hero-decoration-1 {
    position: absolute;
    top: 5rem;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to bottom right, rgba(105, 90, 205, 0.2), transparent);
    border-radius: 9999px;
    filter: blur(48px);
    z-index: -10;
  }
  
  .hero-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to top right, var(--color-navy-100), transparent);
    border-radius: 9999px;
    filter: blur(48px);
    z-index: -10;
  }
  
  /* Buttons */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .button.primary {
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
    border: none;
  }
  
  .button.primary:hover {
    background-color: var(--color-accent-muted);
  }
  
  .button.outline {
    background-color: transparent;
    color: var(--color-foreground);
    border: 1px solid var(--color-border);
  }
  
  .button.outline:hover {
    background-color: var(--color-muted-background);
  }
  
  .button.ghost {
    background-color: transparent;
    color: var(--color-foreground);
    border: none;
  }
  
  .button.ghost:hover {
    background-color: var(--color-muted-background);
  }
  
  .button.full-width-sm {
    width: 100%;
  }
  
  /* About Section */
  .about-section {
    padding: 5rem 0;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
  }
  
  .service-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: rgba(105, 90, 205, 0.1);
    margin-bottom: 1rem;
  }
  
  .service-icon i {
    color: var(--color-accent);
  }
  
  .service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .service-description {
    color: var(--color-muted);
    font-size: 0.875rem;
  }
  
  /* Projects Section */
  .projects-section {
    padding: 5rem 0;
    background-color: var(--color-navy-50);
  }
  
  .section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
  }
  
  .section-description {
    color: var(--color-muted);
    max-width: 32rem;
    margin: 1rem;
    
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Project Card */
  .project-card {
    background-color: var(--color-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .project-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .project-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
  }
  
  .project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .project-card:hover .project-image {
    transform: scale(1.05);
  }
  
  .project-featured-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
  }
  
  .project-content {
    padding: 1.5rem;
    flex-grow: 1;
  }
  
  .project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .project-description {
    color: var(--color-muted);
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  
  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .tag {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    background-color: var(--color-navy-100);
    color: var(--color-navy-800);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    transition: background-color 0.3s;
  }
  
  .tag:hover {
    background-color: hsla(214.3, 31.8%, 85%, 1);
  }
  
  .project-footer {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
  }
  
  .project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .project-link:hover {
    color: var(--color-accent-muted);
  }
  
  
  /* Contact Section */
  .contact-section {
    background-color: rgb(242, 238, 234);
    padding: 5rem 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: rgba(105, 90, 205, 0.1);
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .contact-icon i {
    color: var(--color-accent);
  }
  
  .contact-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .contact-link {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-link:hover {
    color: var(--color-accent);
  }
  
  .contact-text {
    color: var(--color-muted);
  }
  
  /* Forms */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background-color: var(--color-background);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  
  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(105, 90, 205, 0.1);
  }
  
  .form-textarea {
    resize: vertical;
    min-height: 6rem;
  }
  
  /* Footer */
  .footer {
    background-color: var(--color-navy-900);
    color: white;
    padding: 3rem 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-info {
    margin-bottom: 2rem;
  }
  
  .footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    color: var(--color-navy-100);
    margin-bottom: 1.5rem;
    max-width: 32rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: color 0.3s;
  }
  
  .social-link:hover {
    color: rgba(105, 90, 205, 0.7);
  }
  
  .footer-nav-title {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-link {
    color: var(--color-navy-100);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .footer-address {
    font-style: normal;
    color: var(--color-navy-100);
  }
  
  .footer-bottom {
    border-top: 1px solid var(--color-navy-800);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-navy-100);
    font-size: 0.875rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .footer-legal-link {
    color: var(--color-navy-100);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-legal-link:hover {
    color: white;
  }
  
  /* Toast */
  .toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .toast {
    background-color: var(--color-card);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 18rem;
    max-width: 24rem;
    transform: translateX(120%);
    animation: slideIn 0.3s forwards;
  }
  
  .toast.success {
    border-left: 4px solid #10b981;
  }
  
  .toast.error {
    border-left: 4px solid #ef4444;
  }
  
  .toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .toast-icon.success {
    color: #10b981;
  }
  
  .toast-icon.error {
    color: #ef4444;
  }
  
  .toast-content {
    flex: 1;
  }
  
  .toast-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .toast-description {
    font-size: 0.75rem;
    color: var(--color-muted);
  }
  
  .toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
  }
  
  /* About Page */
  .about-hero {
    padding: 2.5rem 0;
    background-color: var(--color-navy-50);
  }
  
  .about-card {
    background-color: rgb(239, 232, 232);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .about-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .profile-image {
    width: 100%; /* Makes it responsive */
    max-width: 20rem; /* Keeps it from getting too large */
    height: auto; /* Maintains aspect ratio */
    border-radius: 99px;
    overflow: hidden;
    border: 4px solid rgba(105, 90, 205, 0.2);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures it fills the container without stretching */
  }
  
  
  .profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .profile-title {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .profile-bio {
    color: var(--color-muted);
     
  }
  
  .about-text {
    color: var(--color-muted);
    margin-bottom: 1rem;
  }
  
  /* Skills Section */
  .skills-section {
    padding: 4rem 0;
  }
  
  .skills-grid {
    display: inline;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .skill-item {
    margin-bottom: 1.5rem;
  }
  
  .skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .skill-name {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .skill-level {
    font-size: 0.875rem;
    color: var(--color-muted);
  }
  
  .skill-progress {
    height: 0.5rem;
    background-color: var(--color-muted-background);
    border-radius: 9999px;
    overflow: hidden;
  }
  
  .skill-progress-bar {
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 9999px;
  }
  
  /* Experience & Education Section */
  .experience-section,
  .education-section {
    padding: 4rem 0;
  }
  
  .education-section {
    background-color: var(--color-navy-50);
  }
  
  .timeline {
    position: relative;
    border-left: 1px solid var(--color-accent);
    padding-left: 2rem;
    margin-left: 1.5rem;
    margin-top: 2rem;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 3rem;
  }
  
  .timeline-marker {
    position: absolute;
    top: 0;
    left: -3.5rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--color-accent);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .timeline-meta {
    display: flex;
    flex-direction: column;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
  
  .timeline-company {
    font-weight: 500;
  }
  
  .timeline-description {
    color: var(--color-muted);
  }

  .timeline-address {
    display: flex;
    flex-direction: column;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
  
  
  /* Projects Page */
  .projects-hero {
    padding: 3rem 0;
    background-color: var(--color-navy-50);
  }
  
  .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0 3rem;
  }
  
  .filter-button {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-foreground);
  }
  
  .filter-button.active {
    background-color: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
  }
  
  .no-results {
    text-align: center;
    padding: 3rem 0;
  }
  
   
  
  .search-container {
    max-width: 32rem;
    margin: 0 auto 3rem;
  }
  
  .search-input-wrapper {
    position: relative;
  }
  
  .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    pointer-events: none;
  }
  
  .search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background-color: var(--color-background);
    font-family: var(--font-sans);
    font-size: 1rem;
  }
  
  .search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(105, 90, 205, 0.1);
  }
  
 
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-foreground);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .back-link:hover {
    color: var(--color-accent);
  }
  
  
  
  /* Contact Page */
  .contact-hero {
    padding: 3rem 0;
    background-color: var(--color-navy-50);
  }
  
  .contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 3rem auto 0;
  }
  
  .contact-info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
  
  .contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .contact-info-content {
    margin-bottom: 2rem;
  }
  
  .contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(105, 90, 205, 0.1);
    margin-right: 1rem;
  }
  
  .contact-info-icon i {
    color: var(--color-accent);
  }
  
  .contact-item-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  
  .contact-item-text {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  a.contact-item-text:hover {
    color: var(--color-accent);
  }
  
  .connect-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .connect-links {
    display: flex;
    gap: 1rem;
  }
  
  .connect-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--color-navy-800);
    color: white;
    transition: background-color 0.3s;
  }
  
  .connect-link:hover {
    background-color: var(--color-accent);
  }
  
  .contact-form-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .submit-button {
    align-self: flex-start;
  }
  
  .map-section {
    padding: 3rem 0;
  }
  
  .map-container {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 64rem;
    margin: 2rem auto 0;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(120%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes slideOut {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(120%);
    }
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    .hero-text {
      font-size: 3rem;
    }
    
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
    
    .button.full-width-sm {
      width: auto;
    }
    
    .footer-bottom {
      flex-direction: row;
    }
    
    .footer-legal {
      margin-top: 0;
    }
    
    .timeline-meta {
      flex-direction: row;
      align-items: center;
    }
    
    .timeline-company::after {
      content: '•';
      margin: 0 0.5rem;
    }
  }
  
  @media (min-width: 768px) {
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    
    .mobile-menu-button {
      display: none;
    }
    
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
      order: 1;
    }
    
    .hero-image {
      order: 2;
    }
    
    .about-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .projects-grid,
     
    
    .section-header {
      flex-direction: row;
      align-items: center;
    }
    
    .contact-grid {
      grid-template-columns: 1fr 2fr;
    }
    
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr;
    }
    
    .about-profile {
      flex-direction: row;
      text-align: left;
    }
    
    .profile-image {
      margin-right: 2rem;
      margin-bottom: 0;
    }
    
    .contact-page-grid {
      grid-template-columns: 1fr 2fr;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-text {
      font-size: 4rem;
    }
    
    .projects-grid,
    
    
    .skills-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }