@charset "UTF-8";
:root {
  --bg-color: #292D3E;
  --surface-color: #444267;
  --text-color: #A6ACCD;
  --text-secondary: #676E95;
  --primary-accent: #C792EA;
  --primary-accent-light: #D4A5F0;
  --secondary-accent: #F78C6C;
  --error-color: #FF5370;
  --success-color: #C3E88D;
  --warning-color: #FFCB6B;
  --info-color: #89DDFF;
  --header-color: #FFFFFF;
  --border-color: #444267;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --profile-shadow: rgba(199, 146, 234, 0.3);
}

[data-theme=light] {
  --bg-color: #FAFAFA;
  --surface-color: #FFFFFF;
  --text-color: #383A42;
  --text-secondary: #9CA0A4;
  --primary-accent: #4078F2;
  --primary-accent-light: #5A8AFF;
  --secondary-accent: #E45649;
  --error-color: #E45649;
  --success-color: #50A14F;
  --warning-color: #C18401;
  --info-color: #0184BC;
  --header-color: #383A42;
  --border-color: #E1E4E8;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --profile-shadow: rgba(64, 120, 242, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow-color);
  margin-top: 2em;
  margin-bottom: 2em;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--header-color);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 500;
  transition: color 0.3s ease;
}

h1 {
  font-size: 2.5em;
  border-bottom: 2px solid var(--primary-accent);
  padding-bottom: 0.3em;
}

h2 {
  font-size: 2em;
  color: var(--primary-accent);
}

h3 {
  font-size: 1.5em;
  color: var(--secondary-accent);
}

a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}
a:hover {
  text-decoration: none;
  color: var(--primary-accent-light);
  border-bottom: 1px solid var(--primary-accent-light);
}
a:visited {
  color: var(--secondary-accent);
}

p {
  margin-bottom: 1em;
  color: var(--text-color);
  transition: color 0.3s ease;
}

strong {
  color: var(--primary-accent);
  font-weight: 600;
}

em {
  color: var(--secondary-accent);
  font-style: italic;
}

code {
  background-color: var(--bg-color);
  color: var(--primary-accent);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

pre {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1em;
  overflow-x: auto;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
pre code {
  background-color: transparent;
  padding: 0;
}

ul, ol {
  color: var(--text-color);
  transition: color 0.3s ease;
}
ul li, ol li {
  margin-bottom: 0.5em;
}

.intro-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2em;
  padding: 1.5em;
  background-color: var(--bg-color);
  border-radius: 8px;
  border-left: 4px solid var(--primary-accent);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-accent);
  box-shadow: 0 4px 15px var(--profile-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.profile-pic:hover {
  transform: scale(1.05);
}

.intro-text h1 {
  margin-top: 0;
  color: var(--header-color);
}

.no-bullet {
  list-style-type: none;
  padding-left: 0;
}

.site-header {
  padding-bottom: 1em;
  margin-bottom: 2em;
  border-bottom: 2px solid var(--border-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 1em 1.5em;
  margin-bottom: 2em;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-nav {
  display: flex;
  gap: 1.5em;
  align-items: center;
  justify-content: center;
}

.nav-link {
  font-size: 1.1em;
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.nav-link:hover {
  background-color: var(--primary-accent);
  color: var(--bg-color);
  text-decoration: none;
}

.theme-toggle {
  background: none;
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.theme-toggle:hover {
  background-color: var(--primary-accent);
  color: var(--bg-color);
}
.theme-toggle .theme-icon {
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .container {
    margin: 1em;
    padding: 1em;
  }
  .intro-header {
    flex-direction: column;
    text-align: center;
  }
  .profile-pic {
    width: 120px;
    height: 120px;
  }
  .site-nav {
    flex-direction: column;
    gap: 1em;
  }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-accent);
}

/* Basic Reset & Font Import */
body {
  font-family: "Raleway", sans-serif; /* Apply Raleway font */
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased; /* For smoother text rendering */
  -moz-osx-font-smoothing: grayscale;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 20px auto;
  background: var(--surface-color);
  padding: 30px;
  box-shadow: 0 0 15px var(--shadow-color); /* Theme-aware shadow */
  border-radius: 8px; /* Rounded corners for the container */
}

/* Header Styling */
header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--primary-accent); /* Theme-aware accent */
  padding-bottom: 15px;
}

header h1 {
  font-size: 2.8em;
  margin-bottom: 5px;
  color: var(--header-color);
  font-weight: 700; /* Bolder for the name */
}

header .subtitle {
  font-size: 1.3em;
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-weight: 500;
}

header .contact-info {
  font-size: 0.95em;
  color: var(--text-secondary);
}

header .contact-info a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: color 0.3s ease; /* Smooth transition for links */
}

header .contact-info a:hover {
  color: var(--primary-accent-light);
  text-decoration: underline;
}

/* Section Headings */
h2 {
  color: var(--primary-accent);
  border-bottom: 1px solid var(--border-color); /* Theme-aware border */
  padding-bottom: 8px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.8em;
  font-weight: 600;
  text-transform: uppercase; /* Uppercase for main sections */
  letter-spacing: 1px;
}

h3 {
  color: var(--secondary-accent);
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.4em;
  font-weight: 600;
}

h4 {
  color: var(--text-color);
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 1.1em;
  font-weight: 500;
}

/* List Styling */
ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 8px;
  padding-left: 25px; /* More space for bullet */
  position: relative;
  text-align: left; /* Ensure text aligns left */
}

ul li::before {
  content: "•";
  color: var(--primary-accent);
  position: absolute;
  left: 0;
  font-size: 1.2em; /* Larger bullet */
  line-height: 1.6; /* Align bullet with text */
}

/* Professional Summary */
.professional-summary {
  margin-bottom: 30px;
  text-align: justify;
  line-height: 1.7;
  font-size: 1.05em;
}

/* Two-Column Layout */
.main-content {
  display: flex;
  gap: 40px; /* Increased space between columns */
  flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.left-column {
  flex: 1; /* Takes 1 part of the available space */
  min-width: 300px; /* Minimum width for the left column to prevent squishing */
}

.experience-certifications {
  flex: 2; /* Takes 2 parts of the available space, making it wider */
  min-width: 450px; /* Minimum width for the right column */
}

/* Specific adjustments for Experience list */
.experience ul li {
  margin-bottom: 12px;
  text-align: justify;
  line-height: 1.6;
}

.date-location {
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .main-content {
    flex-direction: column; /* Stack columns on tablets and smaller */
    gap: 20px;
  }
  .left-column,
  .experience-certifications {
    min-width: unset; /* Remove min-width when stacking */
    width: 100%; /* Take full width */
  }
  header h1 {
    font-size: 2em;
  }
  header .subtitle {
    font-size: 1.1em;
  }
  h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 576px) {
  body {
    padding: 15px;
  }
  .container {
    padding: 20px;
  }
  header h1 {
    font-size: 1.8em;
  }
  header .subtitle {
    font-size: 1em;
  }
  header .contact-info {
    font-size: 0.85em;
  }
  h2 {
    font-size: 1.4em;
  }
  h3 {
    font-size: 1.2em;
  }
  ul li {
    padding-left: 20px;
  }
}
.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.project-item {
  margin-bottom: 3em;
  padding: 2em;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--shadow-color);
}
.project-item h2 {
  color: var(--primary-accent);
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1.8em;
  border-bottom: 2px solid var(--primary-accent);
  padding-bottom: 0.5em;
}
.project-item p {
  color: var(--text-color);
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 2em;
}

.project-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.skill-btn {
  background: var(--primary-accent);
  color: var(--surface-color);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5em 1.2em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  display: inline-block;
  cursor: pointer;
}
.skill-btn:hover {
  background: var(--primary-accent-light);
  color: var(--bg-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  text-decoration: none;
}

.dashboard-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--bg-color);
}
.dashboard-container .tableauPlaceholder {
  width: 100%;
  min-height: 400px;
  border-radius: 6px;
  overflow: hidden;
}
.dashboard-container .tableauViz {
  border: none;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .project-item {
    padding: 1.5em;
    margin-bottom: 2em;
  }
  .project-item h2 {
    font-size: 1.5em;
  }
  .project-item p {
    font-size: 1em;
  }
  .dashboard-container .tableauPlaceholder {
    min-height: 300px;
  }
}
@media (max-width: 576px) {
  .project-item {
    padding: 1em;
    margin-bottom: 1.5em;
  }
  .project-item h2 {
    font-size: 1.3em;
  }
  .dashboard-container .tableauPlaceholder {
    min-height: 250px;
  }
}
/* Resume Specific Styles */
.resume-header {
  text-align: right;
  margin-bottom: 2em;
}

.resume-download {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: var(--primary-accent);
  color: var(--surface-color);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.resume-download:hover {
  background-color: var(--primary-accent-light);
  text-decoration: none;
  border-bottom: none;
}

.resume-container {
  font-family: "Raleway", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em;
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow-color);
}
.resume-container .main-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2em;
}
@media (max-width: 768px) {
  .resume-container .main-content {
    grid-template-columns: 1fr;
  }
}
.resume-container h1, .resume-container h2, .resume-container h3, .resume-container h4 {
  color: var(--primary-accent);
  margin-bottom: 0.5em;
}
.resume-container ul {
  list-style: none;
  padding-left: 0;
}

/* Skills Page Styles */
.flow-step {
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px -1px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px var(--shadow-color);
}
.flow-step .skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(var(--primary-accent), 0.1);
  color: var(--primary-accent);
  box-shadow: 0 2px 4px var(--shadow-color);
  transition: all 0.2s ease;
}
.skill-tag i {
  font-size: 1.1rem;
}
.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--shadow-color);
}
.skill-tag[data-vendor=microsoft] {
  background-color: rgba(var(--primary-accent), 0.1);
  color: var(--primary-accent);
}
.skill-tag[data-vendor=aws] {
  background-color: rgba(var(--warning-color), 0.1);
  color: var(--warning-color);
}
.skill-tag[data-vendor=google] {
  background-color: rgba(var(--success-color), 0.1);
  color: var(--success-color);
}
.skill-tag[data-vendor=apache] {
  background-color: rgba(var(--error-color), 0.1);
  color: var(--error-color);
}

.skill-tag img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

/*# sourceMappingURL=style.css.map */