body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

.container {
    max-width: 960px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}

header {
    background: #333;
    color: #6495ED;
    padding: 1rem 0;
    border-bottom: #77aaff 0px solid;
}
h1 { 
    color: #6495ED;

}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.profile-pic {
    width: 300px;
    height: 400px;
    object-fit: cover;
    margin: 0 auto 20px;
    float: right;
}

.project img {
    border: 2px solid #ccc;
    padding: 5px;
    margin-bottom: 10px;
}

header h1 {
    float: left;
    display: inline;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    list-style: none;
}

header nav li {
    display: inline;
    margin-left: 20px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

section {
    padding: 20px 0;
    margin-bottom: 20px;
    background: #fff;
}

.project {
    border: 1px solid #E6E6FA;
    padding: 20px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    color: #fff;
    background: #333;
    padding: 8px 16px;
    text-decoration: none;
    margin-top: 10px;
}

footer {
    color: #000;
    text-align: center;
    padding: 1rem 0;
    margin-top: 20px;
}

/* Header & Navigation Styling */
header {
    background: #333;
    color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0779e4;
}

header h1 {
    color: #6495ED;
    float: left;
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    list-style: none;
}

header li {
    display: inline;
    margin-left: 20px;
}

header a {
    color: #fff;
    text-decoration: none;
}
video {
    float: left;
    max-width: 50%;
    height: auto;
    display: block;
    border: 3px solid #000;
}

.photo-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 20px;
    width: 100%;
    max-width: 1600px;
    margin: 40px auto;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.photo-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    object-fit: contain;
    background: #fff;
    cursor: pointer;
    transition: transform .15s ease;
}

.photo-box img:hover {
    transform: scale(1.02);
}

.projects {
    text-align: center;
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-content {
  max-width: 95%;
  max-height: 95%;
  text-align: center;
  color: #fff;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  margin-bottom: .75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  border-radius: 4px;
}
.lightbox-caption {
  margin: 0;
  font-size: 1rem;
  opacity: .95;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: .25rem .5rem;
}
.lightbox-close:focus { outline: 2px solid #fff; border-radius: 4px; }