
body {
  font-family: 'Inter', sans-serif;
  background-color: #F0F8FF;
  cursor: none; /* hide OS cursor */
  padding: 0 50px;
}

/* Typography overrides */
.text-accent {
  color: #10b981;
}

/* Header background */
.header-bg {
  background-color: #00497B;
}

/* Cards */
.card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Chart container */
.chart-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: 400px;
  max-height: 500px;
}
@media (min-width: 768px) {
  .chart-container {
    height: 450px;
  }
}
@layer utilities {
  .max-w-lg { max-width: 32rem; }
}
    .description {
      opacity: 0;
      transform: translateX(2rem);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    /* when in viewport */
    .description.in-view {
      opacity: 1;
      transform: translateX(0);
    }

/* Color utilities */
.text-primary-dark   { color: #00497B; }
.text-primary-medium { color: #0077B6; }
.text-primary-light  { color: #48CAE4; }
.text-primary-lighter{ color: #90E0EF; }
.text-accent         { color: #CAF0F8; }

.bg-primary-dark   { background-color: #00497B; }
.bg-primary-medium { background-color: #0077B6; }
.bg-primary-light  { background-color: #48CAE4; }
.bg-primary-lighter{ background-color: #90E0EF; }
.bg-accent         { background-color: #CAF0F8; }

.border-primary-medium { border-color: #0077B6; }
.border-primary-light  { border-color: #48CAE4; }

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0.25rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: #0077B6;
  border: 3px solid #00497B;
  z-index: 10;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px; top: 1.5rem; bottom: -2.5rem;
  width: 2px;
  background-color: #ADE8F4;
  z-index: 5;
}
.timeline-item:last-child::after {
  display: none;
}

/* Section headings */
.section-heading {
  border-bottom: 2px solid #0077B6;
  padding-bottom: 0.5rem;
}

/* Stats circles */
.stat-circle {
  width: 140px; height: 140px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background-color: #90E0EF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 1rem;
}
.stat-circle .number {
  font-size: 3.5rem; font-weight: 900;
  color: #00497B;
}
.stat-circle .label {
  font-size: 1rem; font-weight: 600;
  color: #0077B6; text-align: center; line-height: 1.2;
}

/* Project cards */
.project-card {
  background-color: #90E0EF;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

/* Recommendations */
.recommendation-card {
  border-left: 4px solid #0077B6;
  background-color: #CAF0F8;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.recommendation-card p {
  line-height: 1.6;
}

/* About Me Section */
.about-me-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .about-me-section {
    grid-template-columns: 1fr 2fr;
  }
}
.about-me-image-container {
  display: flex; justify-content: center; align-items: center;
}
.about-me-image {
  max-width: 100%; height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about-me-content {
  padding-left: 1rem;
  color: #374151;
}
.about-me-content h2 {
  font-size: 3.5rem; font-weight: 900;
  color: #00497B; margin-bottom: 1.5rem; line-height: 1;
}
.about-me-content p {
  font-size: 1.15rem; line-height: 1.7; margin-bottom: 1.5rem;
}
.about-me-values {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-me-values {
    justify-content: flex-start;
  }
}
.about-me-values .value-item {
  display: flex; align-items: center;
  background-color: #CAF0F8;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600; color: #0077B6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.about-me-values .value-item .icon {
  font-size: 1.5rem; margin-right: 0.5rem;
}



/* ensure canvas is on top, transparent, and blurred */
#smoke-canvas {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  pointer-events:none;
  background:transparent;
  z-index:50;
  /* optional light blur to soften even more */
  filter: blur(2px);
}

.cursor-indicator {
  position: fixed;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index:60;
  mix-blend-mode: difference;
}

        .chart-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            height: 400px;
            max-height: 500px;
        }
        @media (min-width: 768px) {
            .chart-container {
                height: 450px;
            }
        }
        .header-bg {
            background-color: #00497B;
        }
        .card {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .text-primary-dark { color: #00497B; }
        .text-primary-medium { color: #0077B6; }
        .text-primary-light { color: #48CAE4; }
        .text-primary-lighter { color: #90E0EF; }
        .text-accent { color: #CAF0F8; }
        .bg-primary-dark { background-color: #00497B; }
        .bg-primary-medium { background-color: #0077B6; }
        .bg-primary-light { background-color: #48CAE4; }
        .bg-primary-lighter { background-color: #90E0EF; }
        .bg-accent { background-color: #CAF0F8; }
        .border-primary-medium { border-color: #0077B6; }
        .border-primary-light { border-color: #48CAE4; }

        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.25rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: #0077B6;
            border: 3px solid #00497B;
            z-index: 10;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 9px;
            top: 1.5rem;
            bottom: -2.5rem;
            width: 2px;
            background-color: #ADE8F4;
            z-index: 5;
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .section-heading {
            border-bottom: 2px solid #0077B6;
            padding-bottom: 0.5rem;
        }
        .stat-circle {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #90E0EF;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 1rem;
        }
        .stat-circle .number {
            font-size: 30px;
            font-weight: 900;
            color: #00497B;
        }
        .stat-circle .label {
            font-size: 1rem;
            font-weight: 600;
            color: #0077B6;
            text-align: center;
            line-height: 1.2;
        }
        .project-card {
            background-color: #90E0EF;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        }
        .recommendation-card {
            border-left: 4px solid #0077B6;
            background-color: #CAF0F8;
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }
        .recommendation-card p {
            line-height: 1.6;
        }
        /* New About Me Section Styling */
        .about-me-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem;
            align-items: center;
            background-color: white; /* Card background */
            border-radius: 1.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        @media (min-width: 768px) {
            .about-me-section {
                grid-template-columns: 1fr 2fr; /* Image on left, text on right */
            }
        }
        .about-me-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }
        .about-me-image {
            max-width: 100%;
            height: auto;
            border-radius: 0.75rem; /* Rounded corners for the image */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for image */
        }
        .about-me-content {
            padding-left: 1rem; /* Space between image and text */
            color: #374151; /* Dark gray for text */
        }
        .about-me-content h2 {
            font-size: 3.5rem; /* Large heading */
            font-weight: 900; /* Extra bold */
            color: #00497B; /* Dark blue for heading */
            margin-bottom: 1.5rem;
            line-height: 1;
        }
        .about-me-content p {
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        .about-me-values {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        @media (min-width: 768px) {
            .about-me-values {
                justify-content: flex-start; /* Align left on larger screens */
            }
        }
        .about-me-values .value-item {
            display: flex;
            align-items: center;
            background-color: #CAF0F8; /* Lightest blue background */
            padding: 0.75rem 1.25rem;
            border-radius: 0.5rem;
            font-weight: 600;
            color: #0077B6; /* Medium blue text */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        .about-me-values .value-item .icon {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }




        
        /* Container & Grid */
.recommendation-section {
  padding: 2rem 1rem;
}
.recommendation-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .recommendation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Base */
.recommendation-card {
  position: relative;
  /* background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); */
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recommendation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

/* Decorative Quote Mark */
.recommendation-card::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(0, 119, 182, 0.1);
  font-family: serif;
}

/* Text Styling */
.recommendation-card p {
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}
.recommendation-card .highlight {
  font-weight: 700;
  color: #0077B6;
}

/* Citation */
.recommendation-card cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-weight: 600;
  color: #00497B;
  text-align: right;
}
.recommendation-card cite small {
  font-weight: 400;
  color: #555;
}


/* === mobile (< 768px) project layout tweaks === */
@media (max-width: 767px) {
  /* force each project-media + project-text to span the full width */
  body {
padding: 0px 0px;  }

  /* turn the description from an absolute overlay into a normal block */
  .project .description {
    position: static !important;    /* drop out of absolute context */
    top: auto !important;
    left: auto !important;
    transform: none !important;     /* cancel the translate centering */
    opacity: 1 !important;          /* make sure it’s visible */
    margin-top: 1rem;               /* some breathing room below the image */
    max-width: 100%;                /* fill the container */
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: none;          /* remove blur under mobile */
  }
}

