/*!********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/vars.css ***!
  \********************************************************************/
/* Design tokens (CSS variables) — drop-in replacement */
:root {
  /* Light palette */
  --theme-light-color-bg: #FBFCFE;          /* near-white */
  --theme-light-color-surface: #F3F6FB;     /* soft cool surface */
  --theme-light-text-high: #0F1724;         /* deep ink */
  --theme-light-text-muted: #64748B;        /* slate muted */
  --theme-light-border: #E6EEF8;
  --theme-light-border-100: #EEF6FF;

  --theme-light-color-primary: #0ea5a4;     /* teal-cyan primary */
  --theme-light-color-primary-600: #0b7d7c; /* deep teal */
  --theme-light-color-accent: #ff6b6b;      /* warm coral accent */
  --theme-light-color-accent-600: #e04f4f;  /* deeper coral */

  --theme-light-color-success: #16a34a;     /* green success */
  --theme-light-color-info: #06b6d4;        /* bright aqua */
  --theme-light-color-purple: #7c3aed;      /* vibrant purple */

  --theme-light-neutral-100: #F6F9FC;
  --theme-light-neutral-200: #EBF2F9;
  --theme-light-gradient-blue-start: #0b7d7c;
  --theme-light-gradient-blue-end: #7c3aed;
  --theme-light-avatar-border: rgba(255, 255, 255, 0.92);
  --theme-light-muted-blue: #60c5df;

  /* subtle glow / accent variants */
  --theme-light-accent-glow: rgba(14,165,164,0.12);
  --theme-light-accent-edge: rgba(124,58,237,0.06);
}

:root {
  /* Dark palette */
  --theme-dark-color-bg: #071028;           /* midnight navy */
  --theme-dark-color-surface: #0F1C2A;      /* deep slate */
  --theme-dark-text-high: #F7FAFC;          /* near-white */
  --theme-dark-text-muted: #9FB3C8;         /* cool muted */
  --theme-dark-border: #2A3B4C;
  --theme-dark-border-100: #3A4F63;

  --theme-dark-color-primary: #22c1b3;      /* luminous teal */
  --theme-dark-color-primary-600: #0ea5a4;  /* teal anchor */
  --theme-dark-color-accent: #ff7a7a;       /* glowing coral */
  --theme-dark-color-accent-600: #ff6b6b;

  --theme-dark-color-success: #34d399;      /* fresh green */
  --theme-dark-color-info: #38bdf8;         /* sky aqua */
  --theme-dark-color-purple: #a78bfa;       /* soft neon purple */

  --theme-dark-neutral-100: #071626;
  --theme-dark-neutral-200: #0F1C2A;
  --theme-dark-gradient-blue-start: #0ea5a4;
  --theme-dark-gradient-blue-end: #7c3aed;
  --theme-dark-avatar-border: rgba(255, 255, 255, 0.06);
  --theme-dark-muted-blue: #22c1b3;

  --theme-dark-accent-glow: rgba(34,193,179,0.12);
  --theme-dark-accent-edge: rgba(124,58,237,0.08);
}

:root {
  /* layout & elevation (shared) */
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  /* Light mode shadows */
  --shadow-sm: 0 2px 6px rgba(9,30,66,0.06);
  --shadow-md: 0 8px 24px rgba(9,30,66,0.08);
  --shadow-lg: 0 18px 40px rgba(9,30,66,0.10);

  /* Dark mode shadows */
  --shadow-dark-sm: 0 2px 8px rgba(2,8,23,0.48);
  --shadow-dark-md: 0 8px 28px rgba(2,8,23,0.48);
  --shadow-dark-lg: 0 20px 48px rgba(2,8,23,0.56);

  /* gradient / glow tokens */
  --accent-gradient: linear-gradient(90deg, var(--theme-light-gradient-blue-start), var(--theme-light-gradient-blue-end));
  --accent-gradient-reverse: linear-gradient(90deg, var(--theme-light-gradient-blue-end), var(--theme-light-gradient-blue-start));
  --accent-soft-glow: 0 10px 30px rgba(124,58,237,0.10);

  /* motion & transitions */
  --transition-base: 220ms cubic-bezier(.2,.9,.3,1);
  --transition-smooth: 360ms cubic-bezier(.2,.85,.25,1);
  --motion-pop: cubic-bezier(.17,.85,.44,1);

  /* typography scale helpers */
  --heading-1: 2.6rem;
  --heading-2: 1.6rem;
  --text-lg: 1.05rem;
}

/*!********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/card.css ***!
  \********************************************************************/
/* Projects.css */

/* Container */
.projects {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.8s ease-in-out;
}
.title-centered {
    padding: 30px;
    margin: 30px;
  }
/* Main Title */
.projects h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-high);
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
  padding-bottom: 8px;
}

/* Each Project Section */
.projects section {
  margin-bottom: 2.5rem;
  padding: 20px 25px;
  border-left: 5px solid var(--text-high);
  background: var(--color-surface);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Project Titles */
.projects h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
  color: var(--text-high);
  position: relative;
}

.projects h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  margin-top: 6px;
  border-radius: 2px;
}

/* Subtitle (course name) */
.projects .title {
  font-weight: bold;
  color: var(--text-high);
  margin-bottom: 0.5em;
}

/* Paragraphs */
.projects p {
  line-height: 1.6;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.8em;
}

/* Lists */
.projects ul {
  margin: 0.5em 0 1em 1.2em;
  padding: 0;
  color: var(--text-muted);
}

.projects li {
  margin-bottom: 0.3em;
}

/* Links */
.projects a {
  display: inline-block;
  margin-top: 0.5em;
  color: var(--color-accent);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

.projects a:hover {
  color: var(--color-accent-600);
  text-decoration: underline;
}

/* Institution line */
.projects em {
  color: var(--text-muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .projects {
    padding: 20px;
  }

  .projects h1 {
    font-size: 2rem;
  }

  .projects h2 {
    font-size: 1.4rem;
  }
}
/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/nav.module.css ***!
  \**************************************************************************/
.V8lZnGyeWDsWg2IAT2RQ {
  position: fixed;
  width: 100%;
  list-style-type: none;
  z-index: 200;
  overflow: hidden;
  background-color: var(--color-primary);
}

.KSisSNXnLVPwDsE3GT3o {
  background: var(--color-surface);
  /* subtle gradient using tokens */
  background: linear-gradient(0deg, color-mix(in srgb, var(--color-surface) 85%, transparent) 99%, var(--color-primary) 100%);
}
.KSisSNXnLVPwDsE3GT3o td button {
  width: 100%;
  height: 50px !important;
}
.KSisSNXnLVPwDsE3GT3o td button:hover {
  background-color: transparent;
}

.EhuZaBkb53auS6GkOUup {
  color: var(--theme-dark-color-surface) !important;
  padding: 0px !important;
}

/*!**********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/global.css ***!
  \**********************************************************************/
/* Map semantic aliases to the light palette provided in vars.css */
:root {
  --color-bg: var(--theme-light-color-bg);
  --color-surface: var(--theme-light-color-surface);
  --text-high: var(--theme-light-text-high);
  --text-muted: var(--theme-light-text-muted);
  --border: var(--theme-light-border);
  --border-100: var(--theme-light-border-100);

  --color-primary: var(--theme-light-color-primary);
  --color-primary-600: var(--theme-light-color-primary-600);
  --color-accent: var(--theme-light-color-accent);
  --color-accent-600: var(--theme-light-color-accent-600);

  --color-success: var(--theme-light-color-success);
  --color-info: var(--theme-light-color-info);
  --color-purple: var(--theme-light-color-purple);

  --neutral-100: var(--theme-light-neutral-100);
  --neutral-200: var(--theme-light-neutral-200);
  --gradient-blue-start: var(--theme-light-gradient-blue-start);
  --gradient-blue-end: var(--theme-light-gradient-blue-end);
  --avatar-border: var(--theme-light-avatar-border);
  --muted-blue: var(--theme-light-muted-blue);
  --surface-dark: var(--theme-light-surface-dark);

}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

model-viewer {
  width: 100%;
  height: auto;
}

.ant-timeline-item-tail {
  background-color: var(--text-high);
}

.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid var(--text-high);
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}


.ant-timeline .ant-timeline-item-head {
  background-color: var(--color-surface);

}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-high);
  margin: 0.5em 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-600);
}

.container {
  width: 90%;
  max-width: 1200px;
  padding: 0.5em;
  margin: 0 auto;
  background-color: var(--color-bg);
  border: 1px solid var(--border-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.5s ease-in-out;
}


button {
  background-color: var(--color-primary);
  border: none;
  padding: 0.5em 1em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-high);
}

button:hover {
  background-color: var(--color-primary-600);

}

input,
textarea {
  width: 100%;
  padding: 0.5em;
  margin: 0.5em 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

html,
body {
  margin: 0 auto;
  width: 100%;
  display: flex;
  position: relative;
  height: 100%;
  flex-direction: row;
  align-items: stretch;
  align-content: stretch;
  flex-wrap: wrap;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--color-bg);
  color: var(--text-high);
  transition: background-color var(--transition-base),
              color var(--transition-base);
}

.ant-timeline>li {
  transform: scale(1);
  transition: 1s;
}

.ant-timeline>li:hover {
  transform: scale(1.07);
  transition: 1s;
}

.ant-timeline>li:hover .ant-timeline-item-head {
  transform: scale(2);
  transition: 2s;
}

.flex-header-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
}

.modal-container {
  z-index: 300;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

tr {
  height: auto;
}

td {
  width: -webkit-fill-available;
  width: -moz-available;
}

.chat {
  position: fixed;
  z-index: 100;
  bottom: 100px;
  right: 0;
}

.section {
  word-wrap: break-word;
  width: auto;
  margin: auto;
  padding: 20px;
}

.modal {
  border-radius: 10px;
  background-color: var(--color-info);
  box-shadow: 0px -5px 20px;
  display: flex;
  position: fixed;
  align-content: flex-end;
  flex-wrap: wrap;
}

.section-90 {
  word-wrap: break-word;
  width: 90%;
  margin: auto;
  padding: 20px;
}

.section-60 {
  word-wrap: break-word;
  width: 60%;
  margin: auto;
  padding: 20px;
}

.section-80 {
  word-wrap: break-word;
  width: 80%;
  margin: auto;
  padding: 20px;
}

.section-50 {
  word-wrap: break-word;
  width: 50%;
  margin: auto;
  padding: 20px;
}

.section-33 {
  word-wrap: break-word;
  width: 33%;
  margin: auto;
  padding: 20px;
}

.section,
.section-50,
.section-33,
.section-90,
.section-80 {
  h1 {
    background-color: var(--color-accent);
    padding: 10px;
    text-align: center;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    color: var(--text-high);;
    margin: auto;
    border-radius: 10px;
    position: relative;
  }

  img {
    display: flex;
    flex-direction: column;
    margin: auto;
  }
}

td>h1 {
  text-align: center;
}

.title {
  font-size: 20px !important;
}

.title-centered {
  text-align: center;
}

td {
  padding: 10px;
}

.flexbox-column {
  display: flex;
  justify-content: center;
  margin: auto;
  height: inherit;
}

.content {
  margin-top: 62px;
  padding-bottom: 100px;
  position: relative;
  z-index: 100;
}

.flexbox-row {
  td {
    text-align: center;
  }

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.menu-icon {
  float: left;
}

footer {
  background-color: var(--muted-blue);
  padding: 5px;
  z-index: 1000;
  width: 100%;
  bottom: 0;
  position: fixed;
}

.navLink {
  width: 100%;
}

.nav-submenu {
  color: var(--text-high);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: scroll !important;
}

h3 {
  font-weight: normal;
  color: var(--text-high);;
  font-size: 18px;
}

.modal {
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  button {
    border-radius: 10px;
    border: none;
    height: 50px;
    width: 70%;
  }

  label,
  h2 {
    color: var(--text-high);;
  }

  input,
  textarea {
    resize: none;
    width: 80%;
    border-radius: 10px;
    padding: 10px;
    border: 0px;
  }
}

td {
  vertical-align: text-top;
}

table {
  width: 100%;
}

.responsive-image {
  width: 100%;
  height: auto;
}

.projects h1,
.section-title {
  background: none !important;
  padding: 0;
  margin: 2rem 0 3rem;
  color: var(--text-high);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  border: none;
}

.projects h1::after,
.section-title::after {
  display: none !important;
}

.projects-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--color-bg);
}

.projects-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-high);
  letter-spacing: -1px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-smooth),
              box-shadow var(--transition-smooth),
              background-color var(--transition-base);
  border: 1px solid var(--border);
  margin: 10px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-type {
  color: var(--muted-blue);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.project-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(to right, var(--surface-dark), var(--bg-dark-alt));
  border-bottom: 1px solid var(--border-dark);
}

.project-title {
  color: var(--text-high);
}

.project-subtitle {
  color: var(--text-muted);
}

.project-content {
  padding: 1.5rem 2rem;
  color: var(--text-high)
}

.project-skill {
  background: var(--border-dark);
  color: var(--text-high);
}

.project-button {
  padding: 4px;
  background: var(--color-info);
  color: var(--text-high);;
}

.project-button.secondary {
  background: var(--border-dark);
  color: var(--text-high);
}

.project-button:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}

.project-footer {
  background: var(--surface-dark);
  padding: 10px;
  border-top: 1px solid var(--border-dark);
    text-align: center;

}

.project-institution {
  color: var(--text-muted);
}

/* ...rest of existing dark theme styles... */

@media (min-width: 600px) {
  .flex-header-col {
    margin-right: 100px !important;
  }

  footer {
    height: 95px;
  }

  footer>table>tr>td {
    padding-right: 50px;
  }

  .border-right {
    padding: 50px;
    border-right: 1px solid var(--text-high);;
  }

  .modal {
    margin-top: 10vh;
    height: auto;
    width: 25vw;
    right: 7vw;
    bottom: 150px;
  }

  .flex-image {
    width: 100%;
    margin: auto;
  }

}

@media (max-width: 600px) {

  html,
  body {
    height: 100%;
    padding: 0px !important;
    margin: 0 auto !important;
    overflow-x: hidden;
  }

  footer>table>tr>td {
    padding-right: 30px;
  }

  footer {
    height: 93px;
  }


  .background {
    height: 100%;
  }

  .flex-image {
    width: 100%;
    margin: auto;
  }

  .modal {
    height: auto;
    width: 70vw;
    bottom: 14vh;
    right: 15vw;
  }

  .content {
    height: auto;
    position: relative;
  }

  .section-50,
  .section-33 {
    width: 80%;
  }

  .flexbox-column {
    flex-direction: column;
    align-items: center;
  }

  td {
    padding: 0px;
    width: auto;
  }

  li {
    display: block;
  }

  h1,
  h2,
  h3,
  .title,
  .paragraph {
    width: auto !important;
    justify-content: center;
  }


  .profileSection {
    width: 100%;
  }
}
/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/home.module.css ***!
  \***************************************************************************/
.LP4064L5EOVvgajRk9Ch {
  margin-top: 100px;
}


._V6uPGv3_65gJYgON4HF {
  margin-right: 20px; /* Add margin to the right */
  max-width: 250px; /* Set max width */
  overflow: hidden;
  padding: 20px;
  flex-direction: column; /* Change to column layout */
  align-items: flex-start; /* Align items to the top */
}

body {
  display: flex;
  flex-direction: column;
}
.MSC7b1FyXaR9oIbFIJMI {
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 70%, var(--color-surface) 30%));
  background-size: cover;
  background-position: center;
  padding: 20px 0; /* Adjust padding */
  padding-top: 20px; /* Adjust padding */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically */
  margin: auto; /* Center the card within the container */
}

.Ti0vif9Q_fPJkNcCbmR5 {
  width: 100%; /* Make profile image responsive */
  height: auto;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--avatar-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}




.KqZ7CnaJ5wUsT7jKihSa > h2 {
  color: var(--text-high);
}

.JjWpgoF1ww8RrdoiUHgc {
  display: flex;
  flex-direction: row; /* Ensure text is on the right of the image */
  align-items: flex-start;
}



@media (max-width: 768px) {
 
}

/*!*******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/nav.module-dark.css ***!
  \*******************************************************************************/
.nav {
  position: fixed;
  width: 100%;
  list-style-type: none;
  z-index: 200;
  overflow: hidden;
  background-color: var(--color-primary);
}

.menuList {
  background: var(--color-surface);
  /* subtle gradient using tokens */
  background: linear-gradient(0deg, color-mix(in srgb, var(--color-surface) 85%, transparent) 99%, var(--color-primary) 100%);
}
.menuList td button {
  width: 100%;
  height: 50px !important;
}
.menuList td button:hover {
  background-color: transparent;
}

.navH1 {
  color: var(--theme-light-color-surface) !important;
  padding: 0px !important;
}

/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/global-dark.css ***!
  \***************************************************************************/
/* Remap semantic aliases to the dark palette when this stylesheet is loaded */
:root {
  --color-bg: var(--theme-dark-color-bg);
  --color-surface: var(--theme-dark-color-surface);
  --text-high: var(--theme-dark-text-high);
  --text-muted: var(--theme-dark-text-muted);
  --border: var(--theme-dark-border);
  --border-100: var(--theme-dark-border-100);

  --color-primary: var(--theme-dark-color-primary);
  --color-primary-600: var(--theme-dark-color-primary-600);
  --color-accent: var(--theme-dark-color-accent);
  --color-accent-600: var(--theme-dark-color-accent-600);

  /* Apply dark mode shadows */
  --shadow-sm: var(--shadow-dark-sm);
  --shadow-md: var(--shadow-dark-md);
  --shadow-lg: var(--shadow-dark-lg);

  --color-success: var(--theme-dark-color-success);
  --color-info: var(--theme-dark-color-info);
  --color-purple: var(--theme-dark-color-purple);

  --neutral-100: var(--theme-dark-neutral-100);
  --neutral-200: var(--theme-dark-neutral-200);
  --gradient-blue-start: var(--theme-dark-gradient-blue-start);
  --gradient-blue-end: var(--theme-dark-gradient-blue-end);
  --avatar-border: var(--theme-dark-avatar-border);
  --muted-blue: var(--theme-dark-muted-blue);
  --surface-dark: var(--theme-dark-color-surface);
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

model-viewer {
  width: 100%;
  height: auto;
}

.ant-timeline-item-tail {
  background-color: var(--text-high);
}

.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid var(--text-high);
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}


.ant-timeline .ant-timeline-item-head {
  background-color: var(--color-surface);

}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-high);
  margin: 0.5em 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-600);
}

.container {
  width: 90%;
  max-width: 1200px;
  padding: 0.5em;
  margin: 0 auto;
  background-color: var(--color-bg);
  border: 1px solid var(--border-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.5s ease-in-out;
}


button {
  background-color: var(--color-primary);
  border: none;
  padding: 0.5em 1em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-high);
}

button:hover {
  background-color: var(--color-primary-600);

}

input,
textarea {
  width: 100%;
  padding: 0.5em;
  margin: 0.5em 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

html,
body {
  margin: 0 auto;
  width: 100%;
  display: flex;
  position: relative;
  height: 100%;
  flex-direction: row;
  align-items: stretch;
  align-content: stretch;
  flex-wrap: wrap;
  font-family: 'Arial, sans-serif';
  background-color: var(--color-bg);
  color: var(--text-high);
}

.ant-timeline>li {
  transform: scale(1);
  transition: 1s;
}

.ant-timeline>li:hover {
  transform: scale(1.07);
  transition: 1s;
}

.ant-timeline>li:hover .ant-timeline-item-head {
  transform: scale(2);
  transition: 2s;
}

.flex-header-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
}

.modal-container {
  z-index: 300;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

tr {
  height: auto;
}

td {
  width: -webkit-fill-available;
  width: -moz-available;
}

.chat {
  position: fixed;
  z-index: 100;
  bottom: 100px;
  right: 0;
}

.section {
  word-wrap: break-word;
  width: auto;
  margin: auto;
  padding: 20px;
}

.modal {
  border-radius: 10px;
  background-color: var(--color-info);
  box-shadow: 0px -5px 20px;
  display: flex;
  position: fixed;
  align-content: flex-end;
  flex-wrap: wrap;
}

.section-90 {
  word-wrap: break-word;
  width: 90%;
  margin: auto;
  padding: 20px;
}

.section-60 {
  word-wrap: break-word;
  width: 60%;
  margin: auto;
  padding: 20px;
}

.section-80 {
  word-wrap: break-word;
  width: 80%;
  margin: auto;
  padding: 20px;
}

.section-50 {
  word-wrap: break-word;
  width: 50%;
  margin: auto;
  padding: 20px;
}

.section-33 {
  word-wrap: break-word;
  width: 33%;
  margin: auto;
  padding: 20px;
}

.section,
.section-50,
.section-33,
.section-90,
.section-80 {
  h1 {
    background-color: var(--color-accent);
    padding: 10px;
    text-align: center;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    color: var(--text-high);;
    margin: auto;
    border-radius: 10px;
    position: relative;
  }

  img {
    display: flex;
    flex-direction: column;
    margin: auto;
  }
}

td>h1 {
  text-align: center;
}

.title {
  font-size: 20px !important;
}

.title-centered {
  text-align: center;
}

td {
  padding: 10px;
}

.flexbox-column {
  display: flex;
  justify-content: center;
  margin: auto;
  height: inherit;
}

.content {
  margin-top: 62px;
  padding-bottom: 100px;
  position: relative;
  z-index: 100;
}

.flexbox-row {
  td {
    text-align: center;
  }

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.menu-icon {
  float: left;
}

footer {
  background-color: var(--muted-blue);
  padding: 5px;
  z-index: 1000;
  width: 100%;
  bottom: 0;
  position: fixed;
}

.navLink {
  width: 100%;
}

.nav-submenu {
  color: var(--text-high);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: scroll !important;
}

h3 {
  font-weight: normal;
  color: var(--text-high);;
  font-size: 18px;
}

.modal {
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  button {
    border-radius: 10px;
    border: none;
    height: 50px;
    width: 70%;
  }

  label,
  h2 {
    color: var(--text-high);;
  }

  input,
  textarea {
    resize: none;
    width: 80%;
    border-radius: 10px;
    padding: 10px;
    border: 0px;
  }
}

td {
  vertical-align: text-top;
}

table {
  width: 100%;
}

.responsive-image {
  width: 100%;
  height: auto;
}

.projects h1,
.section-title {
  background: none !important;
  padding: 0;
  margin: 2rem 0 3rem;
  color: var(--text-high);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  border: none;
}

.projects h1::after,
.section-title::after {
  display: none !important;
}

.projects-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--color-bg);
}

.projects-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-high);
  letter-spacing: -1px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: var(--surface-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var( --shadow-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 10px;

}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-type {
  color: var(--muted-blue);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.project-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(to right, var(--surface-dark), var(--bg-dark-alt));
  border-bottom: 1px solid var(--border-dark);
}

.project-title {
  color: var(--text-high);
}

.project-subtitle {
  color: var(--text-muted);
}

.project-content {
  padding: 1.5rem 2rem;
  color: var(--text-high);
}

.project-skill {
  background: var(--border-dark);
  color: var(--text-high);
}

.project-button {
  padding: 4px;
  background: var(--color-info);
  color: var(--text-high);;
}

.project-button.secondary {
  background: var(--border-dark);
  color: var(--text-high);
}

.project-button:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}

.project-footer {
  background: var(--surface-dark);
  padding: 10px;
  border-top: 1px solid var(--border-dark);
  text-align: center;
}

.project-institution {
  color: var(--text-muted);
}

/* ...rest of existing dark theme styles... */

@media (min-width: 600px) {
  .flex-header-col {
    margin-right: 100px !important;
  }

  footer {
    height: 95px;
  }

  footer>table>tr>td {
    padding-right: 50px;
  }

  .border-right {
    padding: 50px;
    border-right: 1px solid var(--text-high);
  }

  .modal {
    margin-top: 10vh;
    height: auto;
    width: 25vw;
    right: 7vw;
    bottom: 150px;
  }

  .flex-image {
    width: 100%;
    margin: auto;
  }

}

@media (max-width: 600px) {

  html,
  body {
    height: 100%;
    padding: 0px !important;
    margin: 0 auto !important;
    overflow-x: hidden;
  }

  footer>table>tr>td {
    padding-right: 30px;
  }

  footer {
    height: 93px;
  }


  .background {
    height: 100%;
  }

  .flex-image {
    width: 100%;
    margin: auto;
  }

  .modal {
    height: auto;
    width: 70vw;
    bottom: 14vh;
    right: 15vw;
  }

  .content {
    height: auto;
    position: relative;
  }

  .section-50,
  .section-33 {
    width: 80%;
  }

  .flexbox-column {
    flex-direction: column;
    align-items: center;
  }

  td {
    padding: 0px;
    width: auto;
  }

  li {
    display: block;
  }

  h1,
  h2,
  h3,
  .title,
  .paragraph {
    width: auto !important;
    justify-content: center;
  }


  .profileSection {
    width: 100%;
  }
}
/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/home.module-dark.css ***!
  \********************************************************************************/
.container {
  margin-top: 100px;
}


.profileSection {
  margin-right: 20px; /* Add margin to the right */
  max-width: 250px; /* Set max width */
  overflow: hidden;
  padding: 20px;
  flex-direction: column; /* Change to column layout */
  align-items: flex-start; /* Align items to the top */
}

body {
  display: flex;
  flex-direction: column;
}
.card {
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 70%, var(--color-surface) 30%));
  background-size: cover;
  background-position: center;
  padding: 20px 0; /* Adjust padding */
  padding-top: 20px; /* Adjust padding */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically */
  margin: auto; /* Center the card within the container */
}

.profileImage {
  width: 100%; /* Make profile image responsive */
  height: auto;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--avatar-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.introductionText > h2 {
  color: var(--text-high);
}

.cardContent {
  display: flex;
  flex-direction: row; /* Ensure text is on the right of the image */
  align-items: flex-start;
}



@media (max-width: 768px) {
 
}

