    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: #2a4b7c;
        color: #e0e7ff;
    }

    header {
        background: #05163a;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.7);
    }

    header h1 {
        margin: 0;
        font-size: 2rem;
        letter-spacing: 1.2px;
    }

/* Make the dropdown float to the right */
.nav-dropdown {
  float: right; /* Moves whole block to the far right */ /* turn0search3 turn0search5 */
  position: relative;
  display: inline-block;
  margin-right: 20px; /* Adds some spacing */
}

/* Style for the button */
.nav-dropdown .dropbtn {
  padding: 8px 30px;
  font-size: 16px;
  background: #2a4b7c;
  border: none;
  border-radius: 6px;
  color: #e0e7ff;
  cursor: pointer;
}

/* Hidden dropdown menu */
.nav-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  border-radius: 6px;
  min-width: 160px;
  right: 0; /* Aligns dropdown’s right edge with the button */ /* turn0search3 turn0search7 */
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Links inside dropdown */
.nav-dropdown .dropdown-content a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: #e0e7ff;
}

.nav-dropdown .dropdown-content a:hover {
  background-color: #2a4b7c;
}

/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-content {
  display: block;
}


    .container {
        padding: 30px;
        max-width: 1100px;
        margin: auto;
    }

    img.profile-pic {
        display: block;
        margin: 20px auto;
        width: 300px;
        height: 300px;
        object-fit: cover;
        border: 4px solid #05163a;
        border-radius: 50%;
    }

    .info, .bio, .gallery {
        background: #0f1a47;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.6);
        margin-top: 20px;
    }

    h2 {
        margin-top: 0;
        border-bottom: 1px solid #1d2f6f;
        padding-bottom: 5px;
    }

    .info p {
        margin: 8px 0;
    }

    /* ===== IMAGE GALLERY ===== */

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
        gap: 15px;
        margin-top: 15px;
    }

    .gallery-grid img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 6px;
        border: 2px solid #05163a;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-grid img:hover {
        transform: scale(1.05);
        box-shadow: 0 0 12px #1d4ed8;
    }

a:link, a:visited, a:hover, a.active {
    background-color: #0f1a47;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #0f1a47;
}

    p.big {
        line-height: 1.8;
    }

        li.big {
        line-height: 1.8;
    }


.butqsl {
    border-radius: 8px;
    width:95%;
}

    footer {
        text-align: center;
        padding: 15px;
        font-size: 0.9rem;
        color: #829bbe;
        border-top: 1px solid #05163a;
        margin-top: 40px;
    
   }

/* ===== LIGHTBOX OVERLAY ===== */
#lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .gallery img {
    width: 100%;
    margin-bottom: 1rem;
  }
}