/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #222;
  line-height: 1.6;
  font-size: 16px;
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #111827;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 00;
  margin-bottom: 1rem;
  line-height:1.3;
}

h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #943bf6;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom:1.2rem;
  line-height:1.3;

}

p {
  margin-bottom: 1rem;
  color: #374151;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  margin-bottom: 3rem;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 1rem;
}

.buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #943bf6;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #7823d5;
}

.btn-secondary {
  background-color: #e0e7ff;
  color: #943bf6;
  border: none;
}

.btn-secondary:hover {
  background-color: #c7d2fe;
}

.about, .experience, .skills, .process, .case-studies, .resume, .contact {
  margin-bottom: 2rem;
}

.profile-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.case-studies {
  padding: 1rem 1rem;
}

.case-study {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}

.case-study img {
  width: 100%;
  min-height: 200px;
  max-height:200px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.case-content {
  flex: 1;
}

@media (min-width: 768px) {
  .case-study {
    flex-direction: row;
    align-items: flex-start;
  }

  .case-study img {
    width: 250px;
    height: auto;
    margin-right: 1.5rem;
  }
}


.job {
  margin-bottom: 1.5rem;
}

.job .date {
  font-style: italic;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.skill-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.1rem;
  padding: 0; /* remove this if inside a container with padding already */
  box-sizing: border-box;
}



.skill-groups > div {
  flex: 1 1 200px;
}

.skill-groups ul {
  list-style: disc inside;
  margin-top: 0.5rem;
  color: #4b5563;
}

.process ol {
  padding-left: 1.25rem;
  color: #4b5563;
}

.process ol li {
  margin-bottom: 1rem;
}

.case-study {
  background: #fff;
  border: 1px solid #d1d5db;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.case-study a {
  font-weight: 600;
}

.resume-preview p {
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.contact {
  text-align: center;
}

footer {
  text-align: center;
  padding: 1rem;
  color: #6b7280;
  font-size: 0.9rem;
}

section {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
}

/* Optional: soften the background behind the whole page */
body {
  background: #f3f4f6; /* slightly deeper gray */
}

/* Optional: emphasize section titles */
section h2 {
  border-bottom: none;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #111827;
}

section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #943bf6;
  margin-top: 0.5rem;
  border-radius: 2px;
}


.skill-groups > div {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 250px; /* grow, shrink, base width */
  min-width: 220px; /* optional for responsive */
}

.skill-groups h3 {
  margin-bottom: 1rem;
  color: #111827;
}

.skill-groups ul {
  list-style-position: outside;
  padding-left: 1.8em;   /* more space from the left edge */
  text-indent: -0.em;   /* negative indent to align wrapped lines nicely */
  line-height: 1.5;      /* optional: improves readability with some vertical spacing */
}

.retrospective p {
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #1f2937;
}

.retrospective ul {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.retrospective li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}
section img {
  width: 100%;
  height:auto;
  display: block;
  border: 1px solid #000000;

}
.headerimg1 img,
.headerimg2 img {
  border: none;
}
.description {
    font-size: 13px;
    font-weight: bold;
    margin: 5px;
    padding-bottom: 60px;
}

.start .description {
  padding-bottom: 10px;
}

.headergrid {
    display: grid;
    grid-column: 1 / 2;
}

.headerimg1 {
    grid-column: 1 / 2;
    grid-row: 2;
    margin: 5px;
    border: 1px solid black;
    background-color: #fff;
}
  
  .headerimg2 {
    grid-column: 2 / 2;
    grid-row: 2;
    margin: 5px;
    border: 1px solid black;
    background-color: #fff;
}

.approach h2 {
  margin-bottom: 0.5rem;
}

.approach ol {
  margin-top: 0;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.approach ol li {
  margin-bottom: 0.75rem;
  color: #4b5563;
  line-height: 1.6;
}

.process h2,
.process p {
  margin-bottom: 0.5rem;
}

.process ol,
.process ul {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.process li {
  margin-bottom: 0.5rem;
  color: #4b5563;
  line-height: 1.6;
}

video {
    width: 100%;
    height: auto;

}

.threegrid {
    display: grid
;
    grid-column: 1;
}

.three1 {
    grid-row: 2;
    margin: 5px;
    border: 1px solid black;
    background-color: #fff;
}

.three2 {
    grid-row: 2;
    margin: 5px;
    border: 1px solid black;
    background-color: #fff;
}

.three3 {
    grid-row: 2;
    margin: 5px;
    border: 1px solid black;
    background-color: #fff;
}