/* Reset & base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
  background: #fafafa;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Header */
.header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 100;
}
.header__content {
  max-width: 1200px; margin: auto; display: flex;
  justify-content: space-between; align-items: center;
  padding: 1.2rem 2rem;
}
.header__logo-container { display: flex; align-items: center; }
.header__logo-img { width: 48px; border-radius: 50%; margin-right: 1rem; }
.header__logo-sub { font-weight: 700; font-size: 1.25rem; }
.header__links { display: flex; }
.header__link {
  margin-left: 2rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: #7843e9;
  transition: color 0.2s;
}
.header__link:hover { color: #4a11ae; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.btn--bg { background: #7843e9; color: #fff; }
.btn--bg:hover { background: #4a11ae; }
.btn--med { font-size: 1rem; padding: 0.5rem 1.5rem; }
.btn--theme { background: #7843e9; color: #fff; }
.btn--theme-inv { background: #fff; color: #7843e9; border: 2px solid #7843e9; }
.btn--theme-inv:hover { background: #e9e0fa; }

/* Hero */
.project-hero {
  background: linear-gradient(to right, #e9e0fa 0%, #fff 100%);
  padding: 7rem 0 4rem 0;
  text-align: center;
}
.heading-primary {
  font-size: 3rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.text-primary {
  max-width: 600px;
  margin: 1rem auto;
  font-size: 1.25rem;
  color: #333;
}
.project-hero__cta a { margin: 0 0.7rem; margin-top: 2rem; }

/* Main Container */
.main-container {
  max-width: 1100px;
  margin: auto;
  width: 90%;
}

/* Project Details */
.project-details__content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(120,67,233,0.05);
  padding: 2rem;
}
.project-details__showcase-img-cont {
  flex: 1 1 350px;
  max-width: 450px;
}
.project-details__showcase-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(120,67,233,0.06);
}
.project-details__content-main {
  flex: 2 1 480px;
  padding: 1rem 0;
}
.project-details__content-title {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  color: #7843e9;
}
.project-details__desc-para {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 1.1rem;
}
.skills { display: flex; flex-wrap: wrap; gap: .8rem; margin: 0.5rem 0 2rem 0; }
.skills__skill {
  background: #e9e0fa;
  color: #4a11ae;
  padding: 0.45rem 1.3rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Footer */
.main-footer {
  background: #7843e9;
  color: #fff;
  margin-top: 5rem;
}
.main-footer__upper {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap;
  gap: 2rem; padding: 2rem;
}
.main-footer__icon {
  width: 32px; margin-right: 1.1rem; vertical-align: middle;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}
.main-footer__icon:hover {
  filter: brightness(0.85) sepia(1) hue-rotate(220deg) saturate(10);
}
.main-footer__short-desc { margin-top: 1rem; max-width: 350px; }
.main-footer__lower {
  padding: 1.2rem 0 1rem 0; text-align: center;
  border-top: 1px solid #fff2;
  font-size: 0.9rem; color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .project-details__content { flex-direction: column; align-items: center;}
  .main-footer__upper { flex-direction: column; align-items: flex-start;}
}
@media (max-width: 600px) {
  .header__links { display: none; }
  .heading-primary { font-size: 2.1rem; }
}








/* Hide hamburger menu on large screens */
.header__main-ham-menu-cont {
  display: none;
}

/* Show hamburger menu on smaller screens (e.g., max-width 768px or as per your design) */
@media (max-width: 768px) {
  .header__main-ham-menu-cont {
    display: block;
  }
  
  /* Also, typically you want to hide the normal nav links on small screens */
  .header__links {
    display: none;
  }
}

/* On large screens, show the nav links */
@media (min-width: 769px) {
  .header__links {
    display: flex; /* or block/flex as per your design */
  }
}












.d-none {
  display: none !important;
}


.header__sm-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.header__sm-menu.header__sm-menu--active {
  visibility: visible;
  opacity: 1;
}

.header__sm-menu-content {
  width: 100%;
  margin: 0;
  padding: 1rem 2rem;
}

.header__sm-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: right;  /* Change to right if you want */
}

.header__sm-menu-link a {
  display: block;
  padding: 15px 0;
  font-weight: 700;
  color: #333;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
}









