body {
          background-image: url('/static/background.svg');
            background-size: cover;
            background-repeat: no-repeat;
            color: #f5ca75;
            /*font-family: 'Arial', sans-serif;*/
            margin: 0;
            padding: 0;
            /*overflow-x: hidden;*/
            min-height: 100vh;
             overflow: hidden;
        }

        header {
            position: fixed;
            top: 0; 
            left: 0; 
            width: 100%;
            background: rgba(60, 56, 54, 0.9);
            padding: 10px 20px; 
            display: flex;
            justify-content: flex-start; 
            align-items: center;
            height: 54px; 
            box-sizing: border-box;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            box-shadow: inset 0 1px 1px rgba(95, 91, 91, 0.995), 0 4px 6px rgba(70, 67, 67, 0.4);
            border-bottom: 1px solid rgba(137, 126, 126, 0.903);
            z-index: 1000;
        }

        .header-left {
        display: flex;
        font-family: "Orbitron", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.3em;
        letter-spacing: 2px;
        word-spacing: 2.8px;
        text-shadow: 0 0 5px rgb(190, 131, 4), 0 0 15px rgb(2, 68, 99);
      }

      .logo__cursor {
        font-size: 0.85em;
        color: #f8dca5;
        margin-left: 10px;
        margin-top: 1.8px;
        opacity: 0;
        transition: opacity 0.3s ease;
        text-shadow: 0 0 5px rgb(190, 131, 4), 0 0 6px rgb(2, 68, 99);
      }

      .header-left:hover .logo__cursor {
        animation: blink 1s ease-in-out infinite;
      }

      @keyframes blink {

        0%,
        100% {
          opacity: 1;
        }

        50% {
          opacity: 0;
        }
      }

        main {
            padding-top: 60px;
            padding-bottom: 54px; 
            min-height: calc(100vh - 114px); 
            /*overflow-y: auto;*/
        }

        .site-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 54px;
            background: rgba(60, 56, 54, 0.9);
            box-sizing: border-box;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            box-shadow: inset 0 1px 1px rgba(95, 91, 91, 0.995), 0 -4px 6px rgba(70, 67, 67, 0.4);
            border-top: 1px solid rgba(137, 126, 126, 0.903);
            font-family: 'Allerta Stencil', sans-serif;
            font-size: 0.85em;
            color: #ffd36d;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            z-index: 1000;
        }

        .footer-content {
            text-align: center;
        }

        .black-overlay {
    position: fixed;
    top: 70px;
    left: 110px;
    right: 110px;
    bottom: 70px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px; 
    z-index: 900;
    pointer-events: none; 
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5) inset;
}
.outer.dark {
    position: fixed;
    top: 70px;
    left: 110px;
    right: 110px;
    height: 10px;
    background: rgba(39, 49, 56, 0.603);
    border-radius: 5px;
    padding: 16px;
    z-index: 950;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    color: #ffd36d;
    /*font-family: 'Montserrat', sans-serif;*/
}

/*
.outer.dark .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-bottom: 2px;
  background: #4a5c66;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}
  */
.btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  margin-top: 3px;
}

.wrapper {
  display: flex;
  gap: 10px;
}

.btn:before,
.btn:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.close-btn {
  background: #FF5D5B;
  border: 1.5px solid #CF544D;
}

.min-btn {
  background: #FFBB39;
  border: 1.5px solid #CFA64E;
}

.max-btn {
  background: #00CD4E;
  border: 1.5px solid #0EA642;
}

.close-btn:before,
.close-btn:after {
  width: 2px;
  height: 70%;
  background: #460100;
}

.close-btn:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.min-btn:before {
  width: 70%;
  height: 2px;
  background: #460100;
}

.max-btn:before {
  width: 60%;
  height: 60%;
  background: #01370a;
}

.max-btn:after {
  width: 2px;
  height: 70%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #00CD4E;
}

.btn:hover:before,
.btn:hover:after {
  top: 50%;
  opacity: 1;
}

.layout {
    position: absolute;
    top: 112px;
    bottom: 69px;
    left: 110px;
    right: 110px;
    /*overflow-y: auto;*/
    display: flex;
    gap: 0px;
    z-index: 1;
    padding: 10px;
    box-sizing: border-box;
}

.sidebar {
    width: 240px;
    margin-right: 8px;
    background: rgba(44, 43, 43, 0.75);
    border: 1px solid rgba(255, 211, 109, 0.4);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    font-family: 'Inconsolata', monospace;
}

.sidebar h3 {
    margin-top: 0;
    font-size: 1.1em;
    color: #ffd36d;
    border-bottom: 1px solid rgba(255, 211, 109, 0.4);
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px 0;
}

.sidebar ul li {
    margin-bottom: 8px;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background 0.3s;
    cursor: pointer;
}
ul li a {
    color: #ffd36d;
    text-decoration: none;
    display: block;
}
.sidebar ul li:hover {
    background: rgba(255, 211, 109, 0.2);
}
.content-area {
    flex-grow: 1;
    background: rgba(44, 43, 43, 0.75);
    border-radius: 12px;
    padding: 20px 40px;
    overflow-y: auto;
    color: #ffd36d;
    border: 1px solid rgba(255, 211, 109, 0.893);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.3);
        scroll-behavior: smooth;
        scroll-padding-top: 33px;
}

.content-area::-webkit-scrollbar {
    width: 12px;
}

.content-area::-webkit-scrollbar-track {
    background: rgba(44, 43, 43, 0.4);
    border-radius: 12px;
}

.content-area::-webkit-scrollbar-thumb {
    background: #ffd36d;
    border-radius: 12px;
    border: 3px solid rgba(44, 43, 43, 0.75);
}

.content-area::-webkit-scrollbar-thumb:hover {
    background: #ffec9d;
}

.content-area {
    scrollbar-width: thin;
    scrollbar-color: #ffd36d rgba(44, 43, 43, 0.4);
}

.h2 {
  font-size: 2.0em;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1.5px;
}

.p{
    font-family: "Nunito", sans-serif;
      font-weight: 400;
      letter-spacing: 1px;
}

.text-bg {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.download-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #7c776c;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
      font-family: 'Inconsolata', monospace;
}

.download-btn:hover {
  background-color: #bb943f;
}

.content-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 211, 109, 0.3);
    margin: 20px 0;
}

.outer.dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
        cursor: pointer;
}

.profile-link-wrapper {
  text-decoration: none; 
}

.profile-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 211, 109, 0.15);
    color: #ffd36d;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    border: 1px solid rgba(255, 211, 109, 0.4);
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    user-select: none;
            margin-right: -8px; 
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #00CD4E;
    border-radius: 50%;
    box-shadow: 0 0 6px #00CD4E;
    animation: blink-dot 1.2s infinite;
        margin-bottom: 23px; 
        margin-right: -45px; 
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.fancy-divider {
  height: 2px;
  width: 100%;
  margin: 30px 0;
background-image: linear-gradient(to top, #a18cd1b5 70%, #fbc2eb7e 30%);  
border-radius: 1px;
  box-shadow: 0 0 8px rgba(255, 211, 109, 0.4);
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-start;
}

.skill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(4, 4, 4, 0.379);
  border: 1px solid rgba(255, 211, 109, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Inconsolata', monospace;
  font-weight: 500;
  color: #ffd36d;
  font-size: 0.95em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.skill:hover {
  background-color: rgba(255, 211, 109, 0.25);
  transform: scale(1.03);
  cursor: default;
}

.skill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(255, 211, 109, 0.4));
}

.certification-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .certification {
            background-color: rgba(4, 4, 4, 0.379);
            border: 1px solid rgba(255, 211, 109, 0.3);
            border-radius: 8px;
            padding: 12px;
            font-family: 'Inconsolata', monospace;
            color: #ffd36d;
            flex: 1; 
            min-width: 250px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3); 
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
    cursor: pointer;
}

.certification:hover {
    transform: scale(1.03); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.4); 
    border-color: #ffd36d; 
    background-color: rgba(4, 4, 4, 0.5); 
}

        .certification img {
            max-width: 100px;
            margin-bottom: 8px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .certification-details {
            font-size: 0.95em;
        }

        .lnXdpd {
          margin-bottom: -10px;
          margin-left: 15px;
        }

.internship-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.internship-card {
  background-color: rgba(4, 4, 4, 0.379);
  border: 1px solid rgba(255, 211, 109, 0.3);
  border-radius: 8px;
  padding: 16px;
  font-family: 'Inconsolata', monospace;
  color: #ffd36d;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.internship-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  background-color: rgba(4, 4, 4, 0.5);
  border-color: #ffd36d;
}

.internship-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0px;
  margin-top: -13px;
}

.internship-date {
  font-size: 0.9em;
  color: #efe9da;
  font-style: italic;
}

.internship-card ul {
  padding-left: 20px;
  margin: 0;
}

.internship-card li {
  margin-bottom: 6px;
}

.buttons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.btnos {
  padding: 6px 14px;
  background-color: #ffd36d;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'Inconsolata', monospace;
}

.btnos:hover {
  background-color: #ffbb00;
  transform: translateY(-2px);
}

.education-section {
  margin-top: 40px;
  font-family: 'Inconsolata', monospace;
  color: #ffd36d;
}

.education-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffd36d;
  padding-bottom: 6px;
  max-width: 220px;
}

@font-face {
        font-family: "Fira Code";
        src: url("/static/fira-code-latin-400.woff2") format("woff2");
        font-weight: 400;
        font-style: normal;
      }

.education-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(4, 4, 4, 0.38);
  border: 1px solid rgba(255, 211, 109, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.education-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border-color: #ffd36d;
  background-color: rgba(4, 4, 4, 0.5);
}

.education-info h3 {
  margin: 0 0 4px 0;
  font-weight: 700;
}

.education-info p {
  margin: 0;
  font-size: 0.95em;
  color: #ffd36dea;
}

.education-year {
  text-align: right;
  font-size: 0.95em;
  color: #ffd36de8;
  min-width: 90px;
}

.education-year p {
  margin: 4px 0;
}

        .projects-section {
            padding: 2rem 0;
            margin-top: -25px;
                        margin-bottom: -30px;
        }

        .projects-title {
            font-size: 3rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 3rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .projects-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ffd36d, #ffbb00);
            border-radius: 2px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .project-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 211, 109, 0.2);
            background: rgba(15, 15, 15, 0.9);
            backdrop-filter: blur(10px);
        }

        .project-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 211, 109, 0.6);
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: conic-gradient(from 0deg, #333, #666, #ffd36d, #666, #333);
            border-radius: 24px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover::before {
            opacity: 1;
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .project-image-container {
            position: relative;
            height: 300px;
            overflow: visible;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 2rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
        }

        .project-title {
            font-size: 1.8rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 0.5rem 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .project-hover-text {
            font-family: 'Nunito', sans-serif;
            color: #ffd36d;
            font-weight: 600;
            font-size: 1rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .project-card:hover .project-hover-text {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .projects-title {
                font-size: 2.5rem;
            }
            
            .project-image-container {
                height: 250px;
            }
        }

        .read-more-container {
          position: absolute;
          top: 10px;
    left: 10px;
    z-index: 1; 
        }

        .read-more-circle {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          background: linear-gradient(135deg, #ffffff, #f0f0f0);
          border: 2px solid #333333;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          position: relative;
          overflow: hidden;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          text-decoration: none;
        }

        .read-more-circle::before {
          content: '';
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: conic-gradient(from 0deg, #333, #666, #333, #666, #333);
          border-radius: 50%;
          z-index: -1;
          opacity: 0;
          transition: opacity 0.3s ease;
        }

        .read-more-circle:hover::before {
          opacity: 1;
          animation: spin 2s linear infinite;
        }

        .read-more-circle:hover {
          transform: scale(1.1);
          background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .read-more-text {
          font-size: 10px;
          font-weight: bold;
          color: #333333;
          text-align: center;
          line-height: 1.1;
          font-family: 'Inconsolata', monospace;
          letter-spacing: 0.5px;
          transition: color 0.3s ease;
        }

        .read-more-circle:hover .read-more-text { 
  color: rgb(195, 186, 186);
}

.contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #111111b3, #4e4c4cc7);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 10px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffd36d;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.contact-details li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.contact-details a {
  color: #ffd36d;
  text-decoration: none;
}

.social-links a {
  margin-right: 1rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffd36d;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 8px;
  border: none;
  background: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form button {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #ffd36d;
  color: #111;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e6b800;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}
@font-face {
  font-family: 'NDOT-55';
  src: url('/static/Ndot-55.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.contact-heading {
  font-family: 'NDOT-55', sans-serif;
  font-size: 2.0rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.header-home-link {
  text-decoration: none;
  color: inherit;
}

.status-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 16px;
      font-family: 'Segoe UI', sans-serif;
    }

    .segment {
      display: flex;
      align-items: center;
      background-image: linear-gradient(to top, #c79081 0%, #dfa579 100%);
      color: black;
      font-weight: 600;
      font-size: 14px;
      padding: 0 14px;
      height: 20px;
      clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
      margin-left: 0px;
      z-index: 1;
    }
/*
    .segment:first-of-type {
      clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 10% 50%);
      margin-left: 0;
    }
      */

    .segment:first-child {
  margin-left: 0;
      clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
}

    .segment svg {
      width: 16px;
      height: 16px;
      margin-right: 6px;
      fill: black;
    }

    .about-svgicon {
  width: 14px !important;
  height: 14px !important;
  margin-right: 6px;
  vertical-align: middle;
}

    .icon-only {
      background: transparent !important;
      padding: 6px;
    }

    .icon-only svg {
       margin-right: 0;
    }

    .status-bar::before {
    content: "|_____";
    font-family: monospace;
    background: linear-gradient(to top, #c79081 0%, #dfa579 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 16px;
    position: relative;
    top: -6px;
    margin-right: 0px;
  }

  a.segment, a.segment:visited {
    text-decoration: none;
    color: black;
}

#current-section-segment {
    overflow: hidden;
    opacity: 0;
    max-width: 0;
    padding-left: 0;
    padding-right: 0;
    transition: opacity 0.4s ease, max-width 0.4s ease, margin-left 0.4s ease, padding 0.4s ease;
}

#current-section-segment.visible {
    opacity: 1;
    max-width: 200px;
    padding-left: 14px;
    padding-right: 14px;
}

/* ADD THESE STYLES TO YOUR CSS FILE */

.profile-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.profile-modal-container.visible {
    opacity: 1;
    pointer-events: auto;
}

.profile-modal-content {
    background: rgba(44, 43, 43, 0.85);
    border: 1px solid rgba(255, 211, 109, 0.5);
    border-radius: 16px;
    padding: 30px 40px;
    width: 90%;
    max-width: 550px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-modal-container.visible .profile-modal-content {
    transform: scale(1);
}

.profile-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2.2rem;
    color: #ffd36d;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-modal-close:hover {
    transform: scale(1.2);
}

.profile-modal-content .download-btn {
    margin-bottom: 1.5rem;
}

.profile-modal-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1rem;
}

.profile-modal-socials a {
    color: #ffd36d;
    text-decoration: none;
    font-family: 'Inconsolata', monospace;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.profile-modal-socials a:hover {
    color: #fff;
    text-decoration: underline;
}
