
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-size: 100%;
    }

    :root {
      --primary-purple: #6d28d9;
      --dark-purple: #4c1d95;
      --light-green: #86efac;
      --dark-bg: #2d1b4e;
      --text-white: #ffffff;
      --accent-black: #3d2666;
      --cyan-accent: #06b6d4;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color:rgb(14, 2, 25);
      color: var(--text-white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* HEADER */
    header {
      background: linear-gradient(135deg, #2a023c 0%, #a685e2 100%);
      /* padding: 1%; */
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(77, 29, 149, 0.4);
      border-bottom: 2px solid rgba(134, 239, 172, 0.2);
    }

    nav {
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: greenyellow;
      text-decoration: none;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      font-family:cursive;
      padding: 1%;
    }

    .logo:hover {
      transform: scale(1.05);
      color: var(--text-white);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      padding: 1%;
    }

    .nav-links a {
      color: yellowgreen;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      font-family:cursive;
    }

    .nav-links a:hover {
      color: whitesmoke;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--light-green);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* MAIN CONTAINER */
    .container {
      max-width: 100%;
      margin: 0 auto;
      padding: 2%;
      min-height: calc(100vh - 200px);
    }

    /* HERO SECTION */
    .hero {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      /* margin-bottom: 2rem; */
      padding: 1%;
    }

    .hero-tagline {
      position: absolute;
      top: 0;
      left: 2rem;
      color: greenyellow;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-tagline::after {
      content: '';
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, #a0a0a0, transparent);
    }

    .hero-tagline::before {
      content: '⟳';
      color: greenyellow;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: center;
      justify-items: center;
      width: 100%;
      max-width: 100%;
      gap: 2rem;
      position: relative;
    }

    .hero-left,
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .welcome-text h1 {
      color: whitesmoke;
      font-weight: 800;
      font-size: 3rem;
      line-height: 1.2;
      text-align: right;
      letter-spacing: -2px;
      font-style: italic;
    }

    .profile-image {
      width:550px;
      height: 600px;
      object-fit: cover;
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
      border: 2px solid rgba(134, 239, 172, 0.2);
      transition: all 0.3s ease;
    }

    .profile-image:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
    }

    .intro-text {
      text-align: left;
    }

    .intro-text .greeting {
      color: greenyellow;
      margin-bottom: 0.5rem;
      font-weight: 300;
      letter-spacing: 2px;
    }

    .intro-text .subtitle {
      color: whitesmoke;
      font-weight: 700;
      font-size: 3rem;
      line-height: 1.2;
      letter-spacing: -1px;
    }

    .hero-footer-nav {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
    }

    .hero-footer-nav a {
      color: var(--light-green);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 0.5rem 1rem;
      border: 2px solid rgba(134, 239, 172, 0.3);
      border-radius: 50px;
    }

    .hero-footer-nav a:hover {
      border-color: var(--light-green);
      color: var(--dark-bg);
      background: var(--light-green);
    }

    /* HERO ABOUT OVERLAY */
    .hero-about-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
      padding: 1%;
      text-align: center;
      border-left: 3px solid yellowgreen;
    }

    .hero-about-overlay h3 {
      color: var(--text-white);
      margin-bottom: 1.5rem;
      letter-spacing: 1px;
      font-size: 2rem;
    }

    .hero-about-overlay p {
      color: #e0e0e0;
      max-width: 1000px;
      margin: 0 auto;
      line-height: 1.8;
      font-weight: 300;
    }

    .btn {
      padding: 0.8rem 2rem;
      font-size:  auto;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
      color: var(--text-white);
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
    }

    .btn-secondary {
      background: transparent;
      color: var(--light-green);
      border: 2px solid var(--light-green);
    }

    .btn-secondary:hover {
      background: var(--light-green);
      color: var(--dark-bg);
      transform: translateY(-3px);
    }

    /* PROJECTS SECTION */
    .projects-section {
      margin-bottom: 4rem;
    }

    .section-title {
      margin-bottom: 3rem;
      text-align: center;
      position: relative;
      color: var(--text-white);
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-purple), var(--light-green));
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

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

    .project-card {
      background: linear-gradient(135deg, var(--accent-black), #2a2a2a);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 10px;
      padding: 2rem;
      transition: all 0.3s ease;
      overflow: hidden;
      position: relative;
    }

    .project-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .project-card:hover::before {
      left: 100%;
    }

    .project-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary-purple);
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    }

    .project-icon {
      margin-bottom: 1rem;
      display: inline-block;
    }

    .project-card h3 {
      color: var(--light-green);
      margin-bottom: 1rem;
      font-size: 2rem;
    }

    .project-card p {
      color: #b0b0b0;
      margin-bottom: 1rem;
    }

    .project-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .tag {
      background: rgba(139, 92, 246, 0.2);
      color: var(--light-green);
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      border: 1px solid rgba(139, 92, 246, 0.3);
    }

    /* SKILLS SECTION */
    .skills-section {
      margin-bottom: 4rem;
      margin-top: 4rem;
      max-width: 100%;
    }

    .skills-code {
      background: #070707;
      border-radius: 16px;
      padding: 2rem 2.5rem;
      color: #b7ff6b;
      font-family: 'Courier New', Courier, monospace;
      line-height: 1.9;
      box-shadow: inset 0 0 40px rgba(0,0,0,0.6), 0 10px 30px rgba(0,0,0,0.6);
      border: 1px solid rgba(183,255,107,0.06);
      max-width: 1100px;
      margin: 0 auto;
      overflow: auto;
    }

    .skills-code ul {
      list-style: disc;
      padding-left: 1.2rem;
    }

    .skills-code li {
      margin-bottom: 0.6rem;
    }

    .skills-code .services {
      margin-top: 0.4rem;
      margin-left: 1.2rem;
      list-style: none;
      padding-left: 0.6rem;
    }

    .skills-code .services li {
      margin-bottom: 0.3rem;
    }

    .skills-title-small {
      font-size: 1rem;
      color: #dfffcf;
      margin-bottom: 1rem;
      text-align: center;
      font-family: 'Courier New', Courier, monospace;
    }

    /* ABOUT SECTION */
    .about-section {
      margin-bottom: 4rem;
    }

    .about-content {
      max-width: 800px;
      margin: 0 auto;
      background: linear-gradient(135deg, var(--accent-black), #4a2d7a);
      padding: 2.5rem;
      border-radius: 10px;
      border: 1px solid rgba(134, 239, 172, 0.1);
      line-height: 1.8;
    }

    .about-content p {
      color: #d0d0d0;
      margin-bottom: 1.5rem;
    }

    .about-content p:last-child {
      margin-bottom: 0;
    }

    /* TIMELINE STYLES */
    .timeline {
      width: 100%;
      margin: 0 auto;
      position: relative;
      padding: 2rem 0;

    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 100%;
      background: yellowgreen;
    }

    .timeline-item {
      margin-bottom: 3rem;
      position: relative;
    }
    .image-size{
      width: 70%;
      height: auto;
    }
    .image-size-smaller{
      width: 50%;
      height: auto;
    }
    .image-size-small{
      width: 100%;
      height: auto;
    }
    .image-size-farmer{
      width: 30%;
      height: auto;
    }
    .vd-size{
        width: 100%;
        height: 300px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
      margin-left: 0;
      margin-right: auto;
      width: 48%;
      /* text-align: right; */
    }

    .timeline-item:nth-child(even) .timeline-content {
      margin-left: auto;
      margin-right: 0;
      width: 48%;
      text-align: left;
    }

    /* Education timeline horizontal layout */
    .education-timeline {
      display: flex;
      /* flex-wrap: wrap; */
      gap: 2rem;
      padding: 2rem 0 !important;
    }

    .education-timeline::before {
      display: none;
    }

    .education-timeline .timeline-item {
      flex: 0 1 calc(33.333% - 1.5rem);
      margin-bottom: 0;
      display: flex;
    }

    .education-timeline .timeline-item:nth-child(odd) .timeline-content,
    .education-timeline .timeline-item:nth-child(even) .timeline-content {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      text-align: left;
    }

    .education-timeline .timeline-content h3 {
        color: yellowgreen;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .education-timeline .timeline-content .institution {
      color: rgb(255, 255, 255);
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .education-timeline .timeline-content .description {
      color: #c0c0c0;
      line-height: 1.6;
      margin: 0;
    }

    .education-timeline .timeline-item:not(:last-child)::after {
      content: '←';
      position: absolute;
      right: -2rem;
      top: 50%;
      transform: translateY(-50%);
      /* color: yellowgreen; */
      font-weight: bold;
      font-size: xx-large;
    }

    .education-timeline .timeline-marker {
      display: none;
    }

    /* Working experience full width */
    .experience-timeline .timeline-item:nth-child(odd) .timeline-content,
    .experience-timeline .timeline-item:nth-child(even) .timeline-content {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      text-align: left;
    }

    .timeline-marker {
      position: absolute;
      width: 20px;
      height: 20px;
      background: yellowgreen;
      border: 4px solid var(--dark-bg);
      border-radius: 50%;
      left: 50%;
      transform: translateX(-50%);
      top: 25px;
      box-shadow: 0 0 0 4px yellowgreen;
      transition: all 0.3s ease;
    }

    .timeline-item:hover .timeline-marker {
      transform: translateX(-50%) scale(1.3);
      background: var(--light-green);
    }
    .original-bg{
      display: flex;
      align-items: center ;
    }
.present{
  display: flex;
  justify-content: space-between;
}
    .timeline-content {
      background: linear-gradient(to top, #010002,#4a2d7a, #010002);
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid rgba(134, 239, 172, 0.1);
      transition: all 0.3s ease;
    }

    .timeline-content:hover {
      border-color: var(--light-green);
      box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
    }

    .timeline-content h3 {
      color: yellowgreen;
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
    }

    .timeline-content .institution {
      color: rgb(255, 255, 255);
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .timeline-content .year {
      color: #888;
      margin-bottom: 1rem;
      font-style: italic;
    }

    .timeline-content .description {
      color: #c0c0c0;
      line-height: 1.6;
      margin: 0;
    }

    /* EDUCATION & EXPERIENCE SECTIONS */
    .education-section,
    .experience-section {
      margin-bottom: 4rem;
    }

    /* Remember Timeline - First item at 100% width */
    .remember-timeline .timeline-item:first-child {
      position: relative;
    }

    .remember-timeline .timeline-item:first-child .timeline-content {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      background: linear-gradient(135deg,#4c1d95, #ffffff);
    }

    .remember-timeline .timeline-item .timeline-content {
      background: linear-gradient(135deg, #ffffff, #4c1d95);
    }

    /* ABOUT ME WITH IMAGE SECTION */
    .about-me-image-section {
      margin-bottom: 4rem;
      padding: 2rem;
    }

    .about-me-container {
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .about-me-main-card {
      background: linear-gradient(135deg, var(--accent-black), #4a2d7a);
      padding: 3rem;
      padding-right: 300px;
      border-radius: 15px;
      border: 1px solid rgba(134, 239, 172, 0.1);
      flex: 1;
      position: relative;
      z-index: 1;
      min-height: 400px;
      display: flex;
      align-items: center;
      text-align: justify;
    }

    .about-me-image-card {
      position: absolute;
      right: -50px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }

    .about-me-image {
      width: 350px;
      height: 450px;
      object-fit: cover;
      border-radius: 15px;
      border: 4px solid var(--primary-purple);
      box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
    }

    .about-me-text {
      color: #d0d0d0;
      line-height: 1.8;
      margin: 0;
    }

    /* DETAILED ABOUT SECTION */
    .achievement-section {
      margin-bottom: 4rem;
      padding: 2rem;
    }

    .achievement-subtitle {
      text-align: center;
      color: #d0d0d0;
      margin-bottom: 3rem;
      font-weight: 500;
    }

    .achievement-table-container {
      max-width: 80%;
      font-size: xx-small;
      font-style: italic;
      margin: 0 auto;
      overflow-x: auto;
    }

    .achievement-table {
      width: 100%;
      border-collapse: collapse;
      background: linear-gradient(135deg, rgba(77, 29, 149, 0.3), rgba(109, 40, 217, 0.3));
      border: 2px solid #ffffff;
    }

    .achievement-table th {
      background: linear-gradient(135deg, rgba(77, 29, 149, 0.5), rgba(109, 40, 217, 0.5));
      color: #ffffff;
      padding: 1.5rem;
      text-align: center;
      font-weight: 600;
      border: 1px solid #ffffff;
    }

    .achievement-table td {
      padding: 1.5rem;
      color: #ffffff;
      border: 1px solid #ffffff;
      text-align: center;
      background: linear-gradient(135deg, rgba(50, 20, 80, 0.4), rgba(70, 30, 100, 0.4));
    }

    .achievement-table tbody tr:hover {
      background: linear-gradient(135deg, rgba(80, 40, 120, 0.6), rgba(100, 50, 140, 0.6));
    }

    .achievement-table td:nth-child(2) {
      text-align: left;
    }
    .detailed-about-section {
      margin-bottom: 2rem;
    }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .detail-card {
      background: linear-gradient(135deg, var(--accent-black), #4a2d7a);
      padding: 2rem;
      border-radius: 10px;
      border: 1px solid rgba(134, 239, 172, 0.1);
      transition: all 0.3s ease;
    }

    .detail-card:hover {
      transform: translateY(-5px);
      border-color: var(--light-green);
      box-shadow: 0 8px 25px rgba(134, 239, 172, 0.15);
    }

    .detail-card h3 {
      color: yellowgreen;
      margin-bottom: 1rem;
      
    }

    /* EXPERIENCE JOURNEY SECTION */
    .experience-journey-section {
      margin-bottom: 4rem;
      max-width: 100%;
    }

    .journey-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .journey-icon {
      font-size: 2.5rem;
    }

    .journey-container {
      grid-template-columns: 1fr 400px 1fr;
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto;
      align-items: center;
      position: relative;
    }

    .journey-left,
    .journey-right {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .journey-left {
      align-items: flex-end;
      text-align: right;
    }

    .journey-right {
      align-items: flex-start;
      text-align: left;
    }

    .journey-item {
      background: linear-gradient(135deg, var(--accent-black), #4a2d7a);
      padding: 1.2rem 1.5rem;
      border-radius: 8px;
      border: 1px solid rgba(134, 239, 172, 0.2);
      transition: all 0.3s ease;
      display: inline-block;
    }

    .journey-left .journey-item {
      margin-right: 1rem;
    }

    .journey-right .journey-item {
      margin-left: 1rem;
    }

    .journey-item:hover {
      border-color: var(--light-green);
      box-shadow: 0 5px 20px rgba(134, 239, 172, 0.2);
      transform: translateX(5px);
    }

    .journey-left .journey-item:hover {
      transform: translateX(-5px);
    }

    .journey-year {
      color: var(--primary-purple);
      font-weight: 600;
      display: block;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
    }

    .journey-role {
      color: var(--light-green);
      font-weight: 600;
      font-size: uato;
      line-height: 1.4;
    }

    .journey-items-row {
      display: flex;
      gap: 1rem;
      flex-direction: column;
    }

    .journey-center {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .e-experience {
      width: 100%;
      height: auto;
      /* object-fit: cover; */
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
      border: 3px solid var(--primary-purple);
    }
    .comparison{
      width: 100%;
      height: 80vh;
      /* object-fit: cover; */
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
      border: 3px solid var(--primary-purple);
    }

    .journey-quote {
      margin-top: 3rem;
      text-align: center;
      background: linear-gradient(135deg, var(--accent-black), #4a2d7a);
      padding: 2.5rem;
      border-radius: 10px;
      border: 1px solid rgba(134, 239, 172, 0.2);
    }

    .journey-quote p {
      color: var(--text-white);
      margin: 0.5rem 0;
      line-height: 1.6;
    }

    .journey-quote p strong {
      color: var(--light-green);
      font-weight: 700;
    }

    .quote-subtext {
      color: #888;
      margin-top: 1rem;
      font-style: italic;
    }

    /* MINDSET / MOOD SECTION */
    .mindset-section {
      /* Primary: mindset-bg.jpg (place the image in the same folder). */
      /* Fallbacks: pf.png then a dark gradient. */
      background-image: url('./img/freedom.png'), url('./pf.png'), linear-gradient(180deg, #0b0b0b 0%, #111 100%);
      background-position: center, center, center;
      background-size: cover, cover, cover;
      background-repeat: no-repeat, no-repeat, no-repeat;
      position: relative;
      padding: 4rem 1rem;
      /* make the background scroll with the section instead of fixed to viewport */
      background-attachment: scroll, scroll, scroll;
      background-clip: border-box;
    }

    .mindset-overlay {
      max-width: 100%;
      margin: 0 auto;
      /* background: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.8)); */
      padding: 3rem 2rem;
      border-radius: 8px;
      border: 1px solid rgba(139,92,246,0.08);
    }

    .mindset-quote {
      text-align: center;
      color: black;
      font-weight: bold;
      font-family: 'Courier New', Courier, monospace;
      margin-bottom: 2rem;
      letter-spacing: 0.6px;
    }

    .mindset-list {
      color: #fff;
      font-family: 'Courier New', Courier, monospace;
      font-size:auto;
      line-height: 1.8;
    }

    .mindset-list ul {
      list-style: disc;
      padding-left: 1.2rem;
    }

    .mindset-list li {
      margin-bottom: 0.6rem;
    }

    @media (max-width: 768px) {
      .mindset-quote {
        font-size: 1rem;
      }
      .mindset-list-text {
        font-size: 0.9rem;
      }
      .mindset-overlay { padding: 2rem 1rem; }
    }

    /* FOOTER */
    footer {
      background: linear-gradient(180deg, var(--accent-black), #000000);
      border-top: 2px solid var(--primary-purple);
      /* padding: 2rem 1rem; */
      margin-top: 4rem;
      box-shadow: 0 -4px 20px rgba(139, 92, 246, 0.1);
      position: sticky;
      bottom: 0;
      z-index: 100;
    }

    .footer-content {
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 2rem;
    }

    .footer-section {
      display: inline-flex;
      align-items: center;
      gap: 1.5rem;
      margin: 1%;
      flex-wrap: wrap;
    }

    .footer-section h4 {
      color: var(--light-green);
      margin-bottom: 0;
      margin-right: 0.5rem;
    }

    .footer-section a {
      color: #b0b0b0;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline;
      margin: 0;
    }

    .footer-section a:hover {
      color: var(--light-green);
    }

    .footer-bottom {
      color: #666;
      margin: 0;
      padding: 0;
      border: none;
    }

    .footer-bottom p {
      margin: 0;
    }

    .divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, yellowgreen, transparent);
      margin: 2rem 0;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero {
        min-height: auto;
        padding: 2rem 1rem;
      }

      .hero-tagline {
        top: 1rem;
        left: 1rem;

      }

      .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .welcome-text h1 {

        text-align: center;
      }

      /* .profile-image {
        width: 220px;
        height: 300px;
      } */

      .intro-text {
        text-align: center;
      }

      .intro-text .greeting {

      }

      .intro-text .subtitle {

      }

      .hero h1 {

      }

      .hero p {

      }

      .section-title {

      }

      .nav-links {
        gap: 1rem;

      }

      .cta-buttons {
        flex-direction: column;
        gap: 1rem;
      }

      .btn {
        width: 100%;
      }

      .projects-grid {
        grid-template-columns: 1fr;
      }

      .skills-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .timeline::before {
        left: 10px;
      }

      .timeline-item:nth-child(odd) .timeline-content,
      .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
        text-align: left;
      }

      .timeline-marker {
        left: 10px;
      }

      .journey-container {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .journey-left,
      .journey-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .journey-left {
        justify-content: flex-start;
        text-align: left;
      }

      .journey-right {
        justify-content: flex-start;
        text-align: left;
      }

      .journey-left .journey-item,
      .journey-right .journey-item {
        margin: 0;
      }

      .journey-left .journey-item:hover,
      .journey-right .journey-item:hover {
        transform: translateY(-3px);
      }

      .e-experience {
        width: 100%;
        height: auto;
      }

      .journey-quote p {

      }
      .education-timeline{
        display: block;
      }
      .education-timeline .timeline-item {
        margin-top: 1.5%;
      }
      .education-timeline .timeline-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -2rem;
      top: 50%;
      transform: translateY(-50%);
      /* color: yellowgreen; */
      font-weight: bold;
    }
      .about-me-container{
        width: 100%;
        /* margin: 0 auto; */
        /* position: relative; */
        display: block;
        /* align-items: center; */
        /* gap: 2rem; */
      }
      .about-me-main-card{
      background: linear-gradient(135deg, var(--accent-black), #4a2d7a);
      padding: 1%;
      padding-right: 1%;
      border-radius: 15px;
      border: 1px solid rgba(134, 239, 172, 0.1);
      position: relative;
      align-items: center;
      text-align: justify;
      }
      .about-me-image-card{
        display: flex;
        justify-content: center;
        position: relative;
        right:0%;
        top:0%;
        transform: translateY(10%);
        z-index: 0;
      }
      .about-me-image{
        width: 50%;
        height: 40%;
      }
      .image-size-farmer{
        width: 50%;
        height: 50%;
      }
      .original-bg .institution{
        /* text-align: justify; */
        margin-right:15px;
      }
    }
    .advise {
      display: flex;
    }
    .advise img{
      width: 30%;
      border-radius: 100%;
      box-shadow: 0 0 10px rgb(228, 20, 255);
    }
    .advise p{
     padding: 2%;
      font-weight: bold;
      color: rgb(228, 230, 242);
      font-size: larger;
      font-family:sans-serif;
    }
    .advise-content{
      display: flex;
      /* justify-content: center; */
      align-items: center;
      text-align: justify;

    }
    span{
      color: gray;
    }
    .img{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .centertd{
      display: flex;
      justify-content: center;

    }
    .thr{
      width: 70%;
    }
    .thr-container{
      display: flex;
      justify-content: center;
    }