/* =====================
   Base Styles
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  font-size: 1.75rem;
  line-height: 1.6;
  background-color: #fff;
}

section {
  margin-block: 60px;
}

main {
  margin: 60px;
}

a {
  text-decoration: none;
  color: #fff;
}

/* =====================
   Typography
===================== */
h1 {
  font-size: 7rem;
  text-align: center;
  color: #1A7270;
  line-height: 1.1;
}

h2 {
  color: #32C3AD;
}

h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* =====================
   Navigation
===================== */
header {
  text-align: center;
}

header ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-inline: 100px;
  border-top: 3px #81AA91 solid;
  margin-top: 20px;
}

.Primary-navigation a {
  color: #1A7270;
}

/* Dropdown Menu */
.dropdown-menu {
  position: relative;
}

.dropdown-portfolio {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  margin: 0px;
  list-style: none;
  z-index: 1000;
  min-width: 180px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-portfolio li a {
  display: block;
  padding: 10px 20px;
  color: #1A7270;
  white-space: nowrap;
  font-size: 1rem;
}

.dropdown-portfolio li a:hover {
  background-color: #fff;
}

.dropdown-menu:hover .dropdown-portfolio {
  display: block;
}


/* =====================
   Hero Section
===================== */
.hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #EAEEE5;
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 5rem;
  color: #1A7270;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #1A7270;
}

.hero-content .get-started {
  font-size: 1.5rem;
  background-color: #55B4AC;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.hero-content .get-started:hover {
  background-color: #184E3A;
}

/* =====================
   WHAT I DO Section
===================== */
.core-skills {
  background-color: #EAEEE5;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}

.core-skills h2 {
  margin-bottom: 2.5rem;
  color: #32C3AD;
  font-size: 2.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
}

.skill-card {
  padding: 1.6rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(128,128,128,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
  background-color: #fff;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: #32C3AD;
}

.skill-card i {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  display: block;
  color: #1A7270;
}

.skill-card span {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}


/* =====================
   Toolkit Section
===================== */
.digital-toolkit {
  padding: 60px 0;
  background-color: #EAEEE5;
  text-align: center;
  border-radius: 12px;
}

.digital-toolkit h2 {
  font-size: 2.5rem;
  color: #32C3AD;
  margin-bottom: 40px;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.toolkit-slider {
  display: flex;
  gap: 40px;
  animation: scrollSlider 30s linear infinite;
  width: max-content;
}

.tool {
  flex: 0 0 auto;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px; /* Optional: ensures consistent height */
}

.tool:hover {
  transform: translateY(-5px);
    border-color: #32C3AD;
}

.tool p {
  font-size: 1.25rem;
  color: #333;
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #184E3A;
}

.tool i {
  font-size: 1.5rem;
  color: #32C3AD;
  align-items: flex-start;

}


/* =====================
   Projects Section
===================== */
.projects-section {
  background-color: #EAEEE5;
  border-radius: 12px;
  padding: 60px 0px;
  border-radius: 12px;
}

.projects-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #32C3AD;
}

.projects {
  display: flex;
  justify-content: center;
  gap: 100px;
  list-style: none;
  font-size: 1.3rem;
}

.project-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  width: 200px;
  height: 120px;
  color: white;
  border-radius: 12px;
  background-color: #55B4AC;
}

.project-card:hover {
  background-color: #184E3A;
}

/* Make links behave properly inside project cards */
.project-card a {
  color: white;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card a sup {
  display: inline;
  font-size: 0.6em;
  vertical-align: super;
}

@media (max-width: 768px) {
  .projects {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .project-card {
    width: 80%;
    max-width: 400px;
  }
}



/* =====================
   Footer / Misc
===================== */
footer {
  color: #184E3A;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  border-top: 3px #81AA91 solid;
  margin-inline: 100px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-column {
  min-width: 220px;
  text-align: left;
}

.footer-column p {
  margin: 10px 0;
}

.footer-column a {
  color: #184E3A;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.contact-icon {
  color: #63E6BE;
  margin-right: 10px;
}

.copyright {
  font-size: 1rem;
  font-style: italic;
  color: #81AA91;
}




/* =====================
   About Page
===================== */

/* Navigation Bar Styles */
.nav-bar {
  background-color: #fff;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px #81AA91 solid;
  margin-inline: 100px;
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
}

.nav-logo .logo {
  height: 80px;
  display: block;
}

.nav-container li {
  display: flex;
  align-items: flex-start;
  margin-top: 5px;
}

.nav-container li a {
  text-decoration: none;
  color: #184E3A;
  font-size: 1.5rem;
  padding: 0 20px;
  line-height: 1;
}

.dropdown-portfolio {
  display: none;
  position: absolute;
  background-color: white;
  padding: 10px 0;
  margin-top: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
}

.dropdown-menu:hover .dropdown-portfolio {
  display: block;
}

.dropdown-portfolio li a {
  display: block;
  padding: 10px 20px;
  color: #1A7270;
  white-space: nowrap;
  font-size: 1rem;
}

/* ── Hero ── */
.hero-V2 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  text-align: center;
  width: 100%;
}

.hero-V2 h1 {
  font-size: 6rem;
  animation: heroFadeIn 0.8s ease both;
  text-align: center;
}

.hero-subtitle {
  white-space: nowrap;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  opacity: 0.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: heroFadeIn 0.8s 0.2s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Stats bar ── */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
}

.stat-item {
  flex: 1 1 160px;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(128,128,128,0.15);
  transition: background 0.3s ease;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(128,128,128,0.05); }

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
  color: #32C3AD;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ── Profile & Bio ── */
.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 0rem 6rem;
}

.grid-2-columns p {
  padding-top: 20px;
  padding-bottom: 20px;
}

.bio-text h2 {
  color: #32C3AD;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.bio-text p {
  margin-top: 0px;
  padding-top: 0px;
  line-height: 1.8;
}

.profile-photo {
  border: #32C3AD solid;
  border-radius: 12px;
  margin-top: 0px;
  max-width: 450px;
  width: 100%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,0.25);
}



/* ── Toolkit ── */
.digital-toolkit {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.digital-toolkit h2 {
  margin-bottom: 2rem;
  color: #32C3AD;
}

.slider-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.toolkit-slider {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: scrollTools 28s linear infinite;
}

.toolkit-slider:hover { animation-play-state: paused; }

@keyframes scrollTools {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 1.6rem;
  border-radius: 10px;
  border: 1px solid rgba(128,128,128,0.18);
  min-width: 110px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.tool:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #32C3AD;
}

.tool i {
  font-size: 1.5rem;
  color: #1A7270;
}

.tool p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ── Divider ── */
.section-divider {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  opacity: 0.5;
  background-color: #32C3AD;
  border: none;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-container { margin-inline: 20px; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(128,128,128,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .grid-2-columns { grid-template-columns: 1fr; padding: 2rem; }
  .grid-2-columns > div:last-child { order: -1; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-V2 h1 { font-size: 3.5rem; }
}





/* =====================
   Contact Page
===================== */

.contact-info {
  margin-top: 0px;
  list-style: none;
}

.contact-section h1 {
  font-size: 6rem;
  
}

.contact-info li {
  gap: 20px;
}

.contact-info a {
  color: #000;
}

.contact-info a:hover {
  color: #184E3A;
}

.contact-icon {
  color: #63E6BE;
  margin-right: 8px; /* adjust spacing here */
}



.languages {
  margin-top: 40px;
}

.languages-list {
  list-style: none;
}

.contact-header {
  margin-top: 40px;
}



/* =====================
   NOOSA Page
===================== */

.project-tasks {
  display: grid;
  grid-template-columns: repeat(2, auto); /* Two columns */
  gap: 20px 10px; /* Row gap, Column gap */
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.project-tasks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 10px;
}

.project-tasks li::before {
  content: "✔";
  color: #1A7270;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px; /* optional: tweak to align the check vertically */
}

.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 80px; /* Space between the columns */
  align-items: center; /* Vertically align content */
  justify-content: space-evenly;
}

.NOOSA-wesbite {
  max-width: 100%;
  height: auto;
  border-radius: 12px; /* optional for smooth corners */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* optional for visual polish */
}

.noosa-layout {
  display: flex;
  gap: 150px;
  align-items: flex-start;
}

.sticky-column {
  position: sticky;
  top: 40px; /* Adjust this value depending on your header height */
  align-self: flex-start;
  max-width: 40%; /* Optional: controls the width of the text column */
}


.sticky-column p {
  padding-top: 0px;
  margin-top: 0px;
  text-align: justify;
}

.sticky-column .year {
  margin-top: 50px;
}

.noosa-images {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 40%; /* Optional: controls the width of the image column */
  border-radius: 8px;
}

.NOOSA-wesbite {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-card {
  background-color: #32C3AD;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.NOOSA-wesbite {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}



/* =====================
   Leaders Of Trade Page
===================== */

.project-tasks {
  display: grid;
  grid-template-columns: repeat(2, auto); /* Two columns */
  gap: 20px 10px; /* Row gap, Column gap */
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.project-tasks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 10px;
}

.project-tasks li::before {
  content: "✔";
  color: #1A7270;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px; /* optional: tweak to align the check vertically */
}

.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 80px; /* Space between the columns */
  align-items: center; /* Vertically align content */
  justify-content: space-evenly;
}

.NOOSA-wesbite {
  max-width: 100%;
  height: auto;
  border-radius: 12px; /* optional for smooth corners */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* optional for visual polish */
}

.noosa-layout {
  display: flex;
  gap: 150px;
  align-items: flex-start;
}

.sticky-column {
  position: sticky;
  top: 40px; /* Adjust this value depending on your header height */
  align-self: flex-start;
  max-width: 40%; /* Optional: controls the width of the text column */
}


.sticky-column p {
  padding-top: 0px;
  margin-top: 0px;
  text-align: justify;
}

.sticky-column .year {
  margin-top: 50px;
}

.noosa-images {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 40%; /* Optional: controls the width of the image column */
  border-radius: 8px;
}

.NOOSA-wesbite {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-card {
  background-color: #32C3AD;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.NOOSA-wesbite {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.results-section {
  padding: 4rem 2rem;
  text-align: center;
}

.results-section h2 {
  color: #32C3AD;
  margin-bottom: 0.5rem;
}

.results-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.result-card {
  flex: 1 1 200px;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(50, 195, 173, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: #32C3AD;
}

.result-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #32C3AD;
  line-height: 1;
}

.result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
}


/* =====================
   Portfolio Download Button
===================== */

.portfolio-download a {
  color: #184E3A;
}











