/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
}



.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: #1f1f1f;
    padding-top: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.navbar ul li {
    margin: 20px 0;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 10px 0;
    transition: background-color 0.3s, color 0.3s;
    font-family: cursive;
}

.navbar ul li a:hover{
    background-color: #f39c12;
    color: #fff;
}

.navbar ul li a:active {
    background-color: #f39c12;
    color: #fff;
}

.container {
    margin-left: 200px; /* Adjust margin to accommodate the navbar */
    flex-grow: 1;
}



.home {
    background: url('background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .content {
    color: #fff;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}
.section {
    margin-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.about .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.about .profile {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .profile img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about .details {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.about .details h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about .details p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.about .buttons {
    display: flex;
    gap: 10px;
}

.about .buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #f39c12;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: bold;
}

.about .buttons .btn:hover {
    background-color: #e67e22;
}


@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400&display=swap');



.timeline {
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.timeline-content {
  padding: 20px;
  background: #1f1f1f;
  -webkit-box-shadow: 5px 5px 10px #1a1a1a, -5px -5px 10px #242424;
          box-shadow: 5px 5px 10px #1a1a1a, -5px -5px 10px #242424;
  border-radius: 5px;
  color: white;
  padding: 1.75rem;
  transition: 0.4s ease;
  overflow-wrap: break-word !important;
  margin: 1rem;
  margin-bottom: 20px;
  border-radius: 6px;
}

.timeline-component {
  margin: 0px 20px 20px 20px;
}

@media screen and (min-width: 768px) {
  .timeline {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
  }
  .timeline-middle {
    position: relative;
    background-image: linear-gradient(45deg, #F27121, #E94057, #8A2387);
    width: 3px;
    height: 100%;
  }
  .main-middle {
    opacity: 0;
  }
  .timeline-circle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #F27121, #E94057, #8A2387);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.font-semibold {
    font-weight: 1000;
    text-align: center;
}

.text-slate-900 {
    color: #fbfbfb !important;
}

.text-slate-500 {
    color: #cbcbcb !important;
}