
 a {
    color: #b9d8d6;
}
.contact {
    display: flex;

}

body {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #1d1d1f;
    color: #656565;
}


.contact .icon
{
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1;
  margin-left: 0.0em;
  vertical-align: middle;
    color: #b9d8d6;
}
.contact a
{
    flex: 2 2;
    display: flex;
    align-content: center;
    justify-content: center;
}
.iframe-container {
  height: 60vh; /* or any fixed %, px, or relative value */
  position: relative;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.image-row {
  display: flex;
  gap: 10px; /* space between images */
  justify-content: center; /* optional: center them */
  align-items: center;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

.image-row img {
  width: 100%;
  max-width: 400px; /* ensures same size, adjust as needed */
  height: auto;
  object-fit: cover;
  border-radius: 6px; /* optional rounded corners */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* optional: adds depth */
}

.expandable {
  margin: 16px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fafafa;
  transition: box-shadow 0.3s ease;
}

.expand-toggle {
  width: 100%;
  background-color: #f0f0f0;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.expand-toggle:hover {
  background-color: #e0e0e0;
}

.expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 16px;
  background-color: #fff;
}

.expandable.open .expand-content {
  max-height: 30000px;
  padding: 16px;
}

.expandable.open {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}



.H2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
    color: #159957;

}

.icon {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  margin-left: 0.5em;
  vertical-align: middle;
}
.project-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.project-showcase .media {
  flex: 2 2 ;
  width: 100%;
}

.project-showcase .media img,
.project-showcase .media video,
.project-showcase .media iframe
 {
  width: 100%;
  height: 30vh;
  min-height: 300px;
  max-height: 500px;
  border-radius: 8px;
}

.project-showcase .contributions {
  flex: 1 1 ;
}

.project-showcase ul {
  padding-left: 1.2em;
  list-style-type: disc;
}

.project-showcase li {
  margin-bottom: 0.5em;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .project-showcase {
    flex-direction: column;
  }
}
