.sticky-header {
  position: fixed;
  background: rgba(10, 15, 28, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 115, 123, 0.4);
  transition: all 0.3s ease;
  width: 100%;
  z-index: 1000;
}
.sticky-header.scrolled {
  background: rgba(10, 15, 28, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .header-content nav {
    position: fixed;
    right: 20px;
    top: 65px;
  }
}
.header-content nav a {
  display: block;
}
.header-content nav a:hover {
  color: rgb(34, 139, 255);
  background: rgba(34, 139, 255, 0.09);
}
.header-content nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .header-content nav ul {
    display: none;
    flex-direction: column;
    width: 180px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(107, 115, 123, 0.4);
  }
}
.header-content a {
  text-decoration: none;
  color: rgb(148, 163, 184);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.header-content a.active {
  color: rgb(34, 139, 255);
  background: rgba(34, 139, 255, 0.2);
}

@media (max-width: 768px) {
  .nav-open nav ul {
    display: flex;
  }
}
.menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: none;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
  }
}
.menu-toggle:focus {
  outline: 2px solid rgba(34, 139, 255, 0.12);
}

.menu-icon {
  position: relative;
}
.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block;
  width: 20px;
  height: 3px;
  background: #94a3b8;
  border-radius: 2px;
}
.menu-icon::before, .menu-icon::after {
  content: "";
  position: absolute;
}
.menu-icon::before {
  top: -7px;
}
.menu-icon::after {
  top: 7px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: translateX(5px);
}

.logo-text, .logo-icon {
  color: rgb(238, 238, 238);
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.logo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #1e40af 0%, #1a0336 90%);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

footer {
  background: rgb(12, 18, 32);
  border-top: 1px solid rgba(107, 115, 123, 0.4);
  padding: 30px 0;
  color: #586578;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.social-links a {
  color: #586578;
  transition: color 0.3s ease;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.social-links svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  display: block;
}

.img-round, .home-banner .img-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.img-round img, .home-banner .img-profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.home-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  max-width: 700px;
  text-align: center;
  margin-bottom: 50px;
}
.home-banner .home-banner-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  height: 150px;
  max-width: 80vw;
  margin: 0 auto;
  overflow: clip;
}
.home-banner .home-banner-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: inset 160px 0px 60px -60px #0f172a, inset -160px 0px 60px -60px #0f172a, inset 0px 2px 3px 1px #0f172a, inset 0px -2px 3px 1px #0f172a;
  z-index: 1;
}
.home-banner .home-banner-bg img {
  width: 100%;
  height: auto;
}
.home-banner .img-profile {
  width: 210px;
  height: 195px;
  box-shadow: 0 8px 30px black;
  position: absolute;
  z-index: 3;
  border: 2px ridge darksalmon;
}
.home-banner h1 {
  font-family: "Brush Script MT", "Brush Script Std", cursive;
  font-style: italic;
  padding: 0 10px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1e40af 10%, #0f172a 50%, #1e40af 90%);
  box-shadow: 0px 4px 10px black;
  border: 4px double #0f172a;
  color: rgb(238, 238, 238);
  position: absolute;
  translate: 0 110px;
  z-index: 4;
  font-size: xx-large;
  background-size: 400% 100%;
  animation: gradient-animation 20s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0%; /* Start at the left */
  }
  50% {
    background-position: 100%; /* Move to the right */
  }
  100% {
    background-position: 0%; /* Return to the start for a seamless loop */
  }
}
.home-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.home-nav a {
  font-family: "Brush Script MT", "Brush Script Std", cursive;
  font-style: italic;
  padding: 0 10px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1e40af 10%, #0f172a 80%);
  box-shadow: 0px 4px 10px black;
  border: 4px double #0f172a;
  color: rgb(238, 238, 238);
  text-decoration: none;
  font-size: x-large;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.home-nav a:hover {
  transform: translateX(4px);
}

.card-content, .project-modal .modal-card .modal-content, .projects-grid .project-card .project-content {
  display: flex;
  flex-direction: column;
}
.card-content h3::after, .project-modal .modal-card .modal-content h3::after, .projects-grid .project-card .project-content h3::after {
  content: "";
  display: block;
  height: 4px;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 15px;
  max-width: 700px;
  background: linear-gradient(to right, transparent, #60a5fa 30%, #60a5fa 70%, transparent);
}
.card-content p, .project-modal .modal-card .modal-content p, .projects-grid .project-card .project-content p {
  text-align: left;
  margin-bottom: 10px;
}

.projects-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}
.projects-grid .project-card {
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: center;
  flex-direction: row;
  gap: 30px;
  min-height: 200px;
  height: auto;
  margin-top: auto;
  width: 90vw;
  max-width: 1000px;
  border: 2px outset #1e40af;
  background-color: rgba(30, 64, 175, 0.25);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 4px 4px 10px 4px black;
}
@media (max-width: 768px) {
  .projects-grid .project-card {
    flex-direction: column;
  }
}
.projects-grid .project-card .project-img {
  padding: 10px;
}
.projects-grid .project-card .project-img img {
  height: 180px;
  width: 180px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .projects-grid .project-card .project-img img {
    width: 70vw;
    height: 60vw;
  }
}
.projects-grid .project-card .project-content {
  align-items: flex-start;
}
@media (max-width: 768px) {
  .projects-grid .project-card .project-content {
    align-items: center;
  }
}
.projects-grid .project-card .project-content .btn-grid {
  display: flex;
  margin-right: auto;
  gap: 10px;
}
.projects-grid .project-card .project-content .btn-grid .btn, .projects-grid .project-card .project-content .btn-grid a, .projects-grid .project-card .project-content .btn-grid button {
  border: 1px solid rgba(107, 115, 123, 0.4);
  border-radius: 5px;
  transition: background 0.3s;
  padding: 8px 16px;
  color: rgb(238, 238, 238);
}
.projects-grid .project-card .project-content .btn-grid button {
  background-color: #1e40af;
}
.projects-grid .project-card .project-content .btn-grid button:hover {
  background-color: #0b216e;
}
.projects-grid .project-card .project-content .btn-grid a {
  text-decoration: none;
  background: #374151;
  font-family: "Courier New", Courier, monospace;
}
.projects-grid .project-card .project-content .btn-grid a:hover {
  background: #1f2937;
}

.project-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100vh;
}
.project-modal .modal-card {
  width: 600px;
  max-width: 80vw;
  max-height: calc(100vh - 150px);
  padding: 10px;
  margin-top: 50px;
  background-color: #1e40af;
  border: 1px solid rgba(107, 115, 123, 0.4);
  border-radius: 20px;
  position: relative;
  overflow-y: auto;
}
.project-modal .modal-card .close-modal-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  color: rgb(148, 163, 184);
  transition: color 0.3s;
  background-color: transparent;
  border: transparent;
}
.project-modal .modal-card .close-modal-btn:hover {
  color: #000;
}
.project-modal .modal-card .modal-content a {
  display: inline-block;
  text-decoration: none;
  color: rgb(238, 238, 238);
}

.x-icon {
  width: 24px;
  height: 24px;
}

.hidden {
  display: none;
}

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

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.6;
  color: rgb(238, 238, 238);
  background: #0f172a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body button {
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #1e40af 0%, #1a0336 90%);
  width: 100vw;
  height: 150px;
  border-bottom: 1px solid rgba(107, 115, 123, 0.4);
  padding-top: 55px;
  padding-bottom: 15px;
}
.hero h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.hero p {
  font-size: 1.2rem;
  color: rgb(148, 163, 184);
  text-indent: 0%;
}
@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
  }
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 30px auto;
}

main {
  flex-grow: 1;
}

.about-content h2, .about-content h3 {
  position: relative;
}
.about-content h2::after {
  content: "";
  display: block;
  height: 4px;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 15px;
  max-width: 700px;
  background: linear-gradient(to right, transparent, rgb(238, 238, 238) 30%, rgb(238, 238, 238) 70%, transparent);
}
.about-content h3 {
  color: #60a5fa;
  margin-top: 30px;
}
.about-content h3::after {
  content: "";
  display: block;
  height: 4px;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 15px;
  max-width: 700px;
  background: linear-gradient(to right, transparent, #60a5fa 30%, #60a5fa 70%, transparent);
}
.about-content p {
  text-align: left;
  font-size: 1rem;
  text-indent: 2rem;
  margin-bottom: 0.5rem;
}

.info-card {
  flex-direction: column;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 20px;
}
.info-card h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1em;
  color: #60a5fa;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
}
.info-card a {
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: center;
  gap: 1em;
  text-decoration: none;
  color: rgb(238, 238, 238);
  padding: 5px 0;
  margin-right: auto;
}
.info-card svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  position: relative;
}

.img-faded-square {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  height: auto;
  width: 600px;
  max-width: 80vw;
  max-height: 80vw;
  margin: 0 auto;
  overflow: clip;
}
.img-faded-square::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 10px 10px #0f172a;
  z-index: 1;
}
.img-faded-square img {
  width: 600px;
}/*# sourceMappingURL=styles.css.map */