@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* CSS Variables for Themes */
:root {
  --bg: #fdf6e3;
  --text: #657b83;
  --accent: #268bd2;
  --sidebar: #fff;
  --borderColor: rgb(0 0 0 / 15%);
  --greytext: #657b83;
  --fadecolor: #fff;
  --cardback: #fff ;
  --tabs-back: #657b83;
  --btnfadecolor :rgb(0 0 0 / 0%);
  transition: 0.48s ease-in-out 0s all;
  --codeblockcolor : #000;
}
.dark {
  --bg: #1B1B2F;
  --text: #ffffff;
  --accent: #00bcd4;
  --sidebar: #181818;
  --borderColor: rgb(204 204 204 / 20%);
  --greytext: #D9D9D9;
  --fadecolor: rgb(0 0 0 / 37%);
  --cardback: rgb(217 217 217 / 13%);
  --tabs-back: #000;
  --btnfadecolor :rgb(0 0 0 / 37%);
  transition: 0.48s ease-in-out 0s all;
  --codeblockcolor : #000;
}

/* Global Reset & Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif !important;
  background-color: var(--bg) !important;
  color: var(--text) !important;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
p,li,button,span {
  font-family: "Inter", sans-serif !important;
}
h1,h2,h3,h4,h5,h6 {
    font-family: "Space Grotesk", sans-serif !important;
}

.main-wrapper {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  overflow: hidden;
}
/* Sidebar */
.sidebar {
  width: 280px;
  color: var(--text);
  overflow-y: auto;
  border-right: 1px solid var(--borderColor);
}
.sidebar nav ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0;
}
.sidebar-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  display:flex;
  gap: 5px;
  font-size: 15px;
}
.sidebar-item:hover {
  background-color: rgb(118 106 106 / 8%);
}


.top-bar{
  border-bottom : 1px solid var(--borderColor);
  flex: 0 0 auto;
}


.dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dots span {
    width: 15px;
    height: 15px;
    background: #ccc;
    border-radius: 50%;
}
/* .files-design img{
  width: 100%;
  max-width: 140px;
} */
.files-design ul {
  list-style: none;
}
.sidebar-item img{
  width: 20px;
}
span.dot1 {
    background: #f1fa8c;
}

span.dot2 {
    background: #50fa7b;
}

span.dot3 {
    background: #ff5555;
}
.files-design ul li {
    font-size: 12px;
    text-transform: capitalize;
}
.top-bar p {
    font-size: 12px;
}
.expText {
  font-size: 14px;
}



html.dark img.whiteLogo {
    display: none;
}
img.darkLogo{
  display:none;
}

html.dark  img.darkLogo {
  display: block;
}
.main-content-wrap {
    width: calc(100% - 280px);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.page-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--borderColor);
    flex: 0 0 auto;
}
.resetbtn-toggle {
    background: transparent;
    box-shadow: none;
    border: 0;
    margin-right: 30px;
    padding: 11.7px 0px;
}
.light button.resetbtn-toggle img {
    filter: grayscale(1) invert(0.6);
}
.sidebarAccordianReset .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent !important;
    box-shadow: none;
}
.sidebarAccordianReset  .accordion-item {
    background-color: transparent;
    border: none;
}

.sidebarAccordianReset .accordion-button{
  background: transparent;
  color: var(--text);
  padding: 0;
  font-size: 15px;
  padding-left: 35px;
}

.sidebarAccordianReset .accordion-body {
    padding: 10px 0px 0px 14px;
}
.sidebarAccordianReset {
    padding: 10px;
}
.sidebarAccordianReset .accordion-button::after {
    position: absolute;
    right: auto;
    left: 5px;
    width: 1rem;
    height: 1rem;
    background-color: transparent;
    background-image: url("/static/images/closed_folder.6a36beb6ffa7.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-mask: none;
            mask: none;
    filter: none;
    transform: none;
    transition: none;
}
.sidebarAccordianReset .accordion-button:not(.collapsed)::after {
    background-image: url("/static/images/open_folder.0dbdacfac95e.png");
    -webkit-mask: none;
            mask: none;
    transform: none;
}
.sidebarAccordianReset .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.footer {
    padding: 5px 30px 5px 10px;
    border-top: 1px solid var(--borderColor);
    background: var(--bg);
    flex: 0 0 auto;
}

p.copyrightText {
    font-size: 13px;
    margin: 0;
    font-weight: 400;
    line-height: 13px;
}
.mainContent {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px 30px 40px 30px;
    scroll-behavior: smooth;
}

.tab-menu-item button {
    border: 0;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}
.tab-menu-item button img {
    width: 16px;
    height: 16px;
}
.tab-menu-item {
    padding: 5px 20px;
    border-right: 1px solid var(--borderColor);
    display: flex;
    gap: 20px;
    align-items: center;
}
a.crossTabbtn {
    text-decoration: none;
    color: var(--text);
    transform: rotate(45deg);
    margin-right: -12px;
    font-size: 25px;
    font-weight: 200;
    transform-origin: center;
}
a.crossTabbtn:hover{
  color: rgb(194, 76, 76);
}

.bannerContent h1{
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 30px;
}
.bannerContent p{
  font-size: 18px;
  color: var(--greytext);
  font-weight: 300;
  max-width: 420px;
}
.imageBanner {
    width: 35%;
}

.bannerContent {
    width: 65%;
    padding-left: 30px;
}

.bannerContent h1 span {
    position: relative;
    font-family: "Space Grotesk", sans-serif !important;
}

.bannerContent h1 span:before {
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    bottom: -4px;
    background: var(--accent);
    left: 1px;
}
.bannerSection {
  margin-bottom: 40px;
}
.skilsSet {
    padding: 40px 0px;
    border-top: 1px solid var(--borderColor);
    margin-bottom: 0;
}
.skilsSet h3 {
    font-size: 25px;
}
.skilsSet p {
  font-size: 16px;
  color: var(--greytext); 
}
.btnStyle {
    padding: 5px;
    border-bottom: 3px solid var(--accent) !important;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text);
    font-size: 15px;
    font-family: "Space Grotesk", sans-serif !important;
    background: transparent;
    box-shadow: none;
    border: none;
}
.contactSection .btnStyle  {
  color: var(--accent);
}
.btnStyle:hover{
  color: var(--accent);
}


::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  border-radius: 20px;
  
  background: var(--accent);
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.projectCard img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}
.projectCard img.projImgTop {
  object-position: top;
}
.projectCard svg.projDiagram {
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 5px;
  background: var(--bg);
}
.projectCard {
  background-color: var(--cardback)!important;
  border-radius: 10px !important;
  border: 1px solid var(--text) !important;
}
.projectContent h4{
  font-size: 20px;
}
.projectTag span {
    font-size: 15px;
    color: var(--greytext);
}

.projectTag {
    display: flex;
    gap: 15px;
}

.sectionHeader h2 {
    font-size: 40px;
    font-weight: 600;
}
.projectSection {
  padding: 40px 0;
  border-top: 1px solid var(--borderColor);
  margin-bottom: 0;
}
.sliderWrap {
  max-width: 600px;
  margin: auto;
}
.slider.slider-nav {
  max-width: 400px;
  margin: auto;
}
.sliderWrap .slider.slider-nav img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.5;
    transform: scale(0.6);
    transition: 0.38s ease-in-out 0s all;
}
.slick-slide.slick-current.slick-active.slick-center img{
    opacity: 1;
    transform: scale(1);
}
.wrapContainer {
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 30px;
    background: var(--fadecolor);
    margin-bottom: 40px;
    position : relative;
}
.wrapContainer p {
    font-size: 22px;
    text-align: center;
    font-weight: 300;
}

.wrapContainer:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    border-style: solid;
    border-width: 10px;
    border-color: var(--accent) transparent  transparent transparent;
    bottom: -20px;
    left: 50%;
    transform: translatex(-50%);
}
.recommandSection {
    padding: 40px 0;
    border-top: 1px solid var(--borderColor);
    margin-bottom: 0;
}

.sectionHeader p.subheading {
    color: var(--greytext);
    font-size: 18px;
    max-width: 400px;
}
.paraText {
    color: var(--text);
    font-size: 18px;
    font-weight: 400;
    max-width: 90%;
    line-height: 1.7em;
}
.paraTextFull{
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7em;
}
.contactSection {
  padding: 40px 0 0;
  border-top: 1px solid var(--borderColor);
}

/* Certification cards: up to 5 across, sized for ~600x600 square badges */
.certSection .projectCard .card-body {
  padding: 0.75rem;
}
.certSection .projectCard .projectImg {
  height: auto;
  min-height: 0;
}
.certSection .projectCard .projectImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.certSection .projectCard .projectContent {
  padding-top: 0.75rem;
}
.certSection .projectCard .projectContent h4 {
  font-size: 0.9rem;
}

/* Recommendation cards */
.recommandCards .recAvatar {
  width: 52px;
  height: 52px;
  object-fit: cover;
  flex-shrink: 0;
}
.recommandCards .recQuote {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Off-screen honeypot field for the contact form */
.honeypot {
  position: absolute;
  left: -9999px;
}

.contactDesign input,
.contactDesign textarea {
    padding: 0px 0px 15px;
    background: transparent;
    margin-bottom: 35px;
    border: 0;
    color: var(--text);
    border-bottom: 1px solid var(--greytext);
}
.contactDesign input:focus, .contactDesign input:focus-visible,
.contactDesign textarea:focus, .contactDesign textarea:focus-visible {
    border: 0;
    border-bottom: 1px solid var(--accent);
    box-shadow: none;
    outline: 0;
}
.contactDesign input::placeholder,.contactDesign textarea::placeholder {
    color: var(--greytext);
}
.expBanneText{
  margin-bottom: 50px;
}
.light .footer img {
    filter: grayscale(1) invert(0.6);
}


.card.expCard {
    background-color: var(--cardback);
    border-radius: 15px;
    border: 1px solid var(--accent) ;
}

.card.expCard span.expTag {
    background: var(--accent);
    font-size: 12px;
    padding: 5px 20px;
    border-radius: 50px;
    position: relative;
    top: -24px;
    color : #fff;
}

.card.expCard h5 {
    font-size: 20px;
}

.card.expCard p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1px;
    max-width: 90%;
    line-height: 1.7em;
    margin-bottom: 30px;
}

.card.expCard p.compName {
    color: var(--accent);
    margin-bottom: 0px;
}
.card.expCard .card-body {
    padding: 10px 30px 20px;
}
.eduCard .card-body{
  padding: 30px !important;
}
.EduTag {
  background: var(--accent);
  font-size: 12px;
  padding: 5px 20px;
  border-radius: 50px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff ;
}
.eduCard img{
  width: 38px;
  height: 38px;
}


html.dark img.imageLight {
    display: none;
}

html.light img.imageDark {
    display: none;
}
.skillSection {
  padding: 50px 0px;
}
.educationSection {
  padding: 40px 0px;
}


.skillTabs nav .nav button {
    padding: 5px 20px;
    border-radius: 50px;
    color: var(--text);
    font-weight: 400;
    background: var(--cardback);
    border: none;
}
.skillTabs nav .nav button:focus{
  border: none;
  outline: none;
}
.skillTabs .nav-tabs .nav-link.active {
    background: var(--tabs-back);
    border: none;
    color: var(--accent);
}
.light .skillTabs .nav-tabs .nav-link.active  {
  color: #fff !important;
}
.skillTabs .nav-tabs {
  border: none;
}

.card.skillsCard {
    border-radius: 25px;
    background: var(--fadecolor);
    padding: 20px;
}
.card.skillsCard img {
    width: 35px;
    height: 35px;
}
.projectList .pImageFull {
    width: 100%;
    border-radius: 20px;
    height: 350px;
    object-fit: cover;
}
.projectList h2 {
  font-size: 22px;
}

.projectList p {
  color: var(--greytext);
  font-size: 16px;
  max-width: 500px;
}

.pTags span {
  padding: 5px 20px;
  border-radius: 50px;
  color: var(--text);
  font-weight: 400;
  background: var(--cardback);
  border: none;
  font-size: 13px;
}

.btnGroup {
    display: flex;
    align-items: center;
    margin-top : 20px;
    gap: 20px;
}
.btnGroup a {
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    text-decoration: none;
}
a.withStyleBtn {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
}
a.withoutStyleBtn{
  background: var(--btnfadecolor);
  color: var(--text);
  border: 1px solid var(--accent);
}
.light a.withoutStyleBtn img {
  filter: grayscale(1) invert(0.6);
}
.dark .btnGroup a:hover {
  color: #fff;
}

.keyFeatureSection {
  padding: 40px 0px !important;
}

.keyFeatureSection .sectionHeader h2 {
    font-size: 25px;
}

.card.keyCard {
    border-radius: 25px;
    background: var(--fadecolor);
    padding: 10px;
    border: 1px solid var(--accent);
}

.card.keyCard img {
    width: 35px;
    height: 35px;
}
.keyCard p {
    font-size: 14px;
}
.visualSliderStyle .slick-slide{
  padding: 10px 0px;
}
.visualSliderStyle img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transform: scale(0.9);
  opacity: 0.4;
  transition: 0.38s ease-in-out 0s all;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
.visualSliderStyle .slick-slide.slick-current.slick-active.slick-center img{
  transform: scale(1);
  transition: 0.38s ease-in-out 0s all;
  opacity: 1;
}

.visualSliderStyle button.slide-arrow.prev-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 180px;
}
.visualSliderStyle button.slide-arrow.next-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 180px;
}
.recommandSection button.slide-arrow.prev-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
}
.recommandSection button.slide-arrow.next-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
}

button.slick-arrow {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    z-index: 9;
    color: #000;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 26%);
    display: flex;
    align-items: center;
    justify-content: center;
}



.qouteText {
    font-size: 21px !important;
    font-weight: 300;
    max-width: 85%;
    line-height: 1.8em;
    margin-bottom: 20px;
}

.userCard img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}
.userCard h5 {
  font-size: 16px;
}

.userCard p {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--greytext);
}
.contactCard{
  background-color: var(--fadecolor) !important;
  border-radius: 20px !important;
  padding: 30px;
}

span.contactIconWrap {
    width: 50px;
    height: 50px;
    background: var(--fadecolor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

span.contactIconWrap img {
    width: 30px !important;
    height: 30px !important;
}
.mapWrap {
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
}




@media screen and (max-width:1200px){
  .bannerContent h1{
    font-size: 40px;
  }
  .visualSliderStyle button.slide-arrow.next-arrow.slick-arrow{
    right: 80px;
  }
  .visualSliderStyle button.slide-arrow.prev-arrow.slick-arrow{
    left: 80px;
  }
  .visualSliderStyle img{
    height: 350px;
  }
}


@media screen and (max-width:991px){
  .resetbtn-toggle.mobile {
    display: block !important;
  }
  .page-tabs {
    display: none;
  }
  .sectionHeader h2{
    font-size: 30px;
  }
  .sidebar {
    position: fixed;
    height: calc(100% - 61px);
    bottom: 0;
    background: var(--bg);
    z-index: 99;
    left: -100%;
    transition: 0.38s ease-in-out 0s all;
  }
  .sidebar.is-open
  {
      left: 0;
  }
  .main-content-wrap{
    width: 100%;
  }
  .hamburger {
    position: relative;
    width: 1em;
    height: 1em;
    font-size: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 15px;
  }
  .hamburger.is-sm {
    font-size: 1rem;
  }
  .hamburger.is-lg {
    font-size: 1.2rem;
  }
  .hamburger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 0.100em;
    border-radius: 0.125em;
    background: var(--text);
    transition: inherit;
  }
  .hamburger-line:nth-child(1) {
    top: 0.125em;
  }
  .hamburger.is-active .hamburger-line:nth-child(1), .w-nav-button.w--open .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotateZ(-135deg);
  }
  .hamburger-line:nth-child(2) {
    top: 0.438em;
  }
  .hamburger.is-active .hamburger-line:nth-child(2), .w-nav-button.w--open .hamburger-line:nth-child(2) {
    right: 50%;
    width: 0;
  }
  .hamburger-line:nth-child(3) {
    top: 0.75em;
    width: 0.625em;
  }
  .hamburger.is-active .hamburger-line:nth-child(3), .w-nav-button.w--open .hamburger-line:nth-child(3) {
    top: 50%;
    width: 100%;
    transform: translateY(-50%) rotateZ(135deg);
  }
  .footer{
    width: 100%;
  }
  a.sideBartoggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visualSliderStyle img {
    height: 300px;
  }
  
}

@media screen and (max-width: 767px){
    .logosss img {
        width: 170px;
        object-fit: contain;
    }
  .userCard img {
    width: 40px !important;
    height: 40px !important;
  }
  .contactCard{
    padding: 15px 10px;
  }
  .userCard h5 {
    font-size: 14px;
  }
  .qouteText{
    font-size: 16px !important;
  }
  .projectList p{
    max-width: 100%;
  }
  .skilsSet h3{
    font-size: 20px;
  }
  .projectCard img{
    height: 180px;
  }
  .bannerContent h1{
    font-size: 30px;
  }
  .wrapContainer p{
    font-size: 18px;
  }
  .sliderWrap .slider.slider-nav img{
    width: 50px;
    height: 50px;
  }
  button.slick-arrow {
    width: 30px;
    height: 30px;
  }
  .recommandSection button.slide-arrow.prev-arrow.slick-arrow{
    left: 0px;
  }
  .recommandSection button.slide-arrow.next-arrow.slick-arrow{
    right: 0px;
  }
  .contactSection{
    padding: 0px;
  }
  .visualSliderStyle button.slide-arrow.next-arrow.slick-arrow{
    right: 85px;
  }
  .visualSliderStyle button.slide-arrow.prev-arrow.slick-arrow{
    left: 85px;
  }
}
@media screen and (max-width: 575px){
  .visualSliderStyle button.slide-arrow.next-arrow.slick-arrow{
    right: 15px;
  }
  .visualSliderStyle button.slide-arrow.prev-arrow.slick-arrow{
    left: 15px;
  }
  .skilsSet h3{
    font-size: 18px;
  }
  .skilsSet p {
    font-size: 10px;
  }
  .sectionHeader h2{
    font-size: 25px;
  }
  .imageBanner {
    width: 50%;
    margin-bottom: 20px;
  }
  .bannerContent{
    padding: 0px 0px 0px 0px;
    width: 100%;
  }
  .btnStyle{
    font-size: 11px;
  }
  .wrapContainer p{
    font-size: 12px;
  }
  .keyCard p{
    font-size: 11px;
  }
  .card.keyCard img {
    width: 25px;
    height: 25px;
  }
  .btnGroup a{
    font-size: 10px;
  }
}
.tabs-menu {
  width: 100%;
  overflow-x: auto;
  padding-right: 20px;
  white-space: nowrap;
}

.tabs-menu::-webkit-scrollbar {
  height: 3px;
}

.tabs-menu::-webkit-scrollbar-track {
  background: transparent;
}
.tabs-menu::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: var(--accent);
}

.tabs-menu::-webkit-scrollbar-thumb:hover {
  background: #555;
}




.card.exampleCard {
    background-color: transparent;
    border-radius: 15px;
    border: 1px solid var(--accent);
}
.card.exampleCard .card-header{
  border-bottom: 1px solid var(--accent);
}

/* Headings */
.custom-h1 {
  font-size: 50px !important; 
  font-weight: 700;
  color: var(--text);
}

.custom-h2 {
  font-size: 40px !important; 
  font-weight: 600;
  color: var(--text);
}

.custom-h3 {
  font-size: 30px !important; 
  font-weight: 600;
  color: var(--text);
}

.custom-h4 {
  font-size: 26px !important; 
  font-weight: 500;
  color: var(--text);
}

.custom-h5 {
  font-size: 22px !important; 
  font-weight: 500;
  color: var(--text);
}

.custom-h6 {
  font-size: 18px !important; 
  font-weight: 500;
  color: var(--text);
}

/* Code block styling */
.code-block {
  background: var(--codeblockcolor);
  border: 1px solid #000;
  padding: 1em;
  border-radius: 6px;
  font-family: "Space Mono", monospace;
  font-size: 18px;
  overflow-x: auto;
  color: var(--text);
}


/* Text styles */

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

.bold-text {
  font-weight: bold;
}

.italic-text {
  font-style: italic;
}

.underline-text {
  text-decoration: underline;
}

.strike-text {
  text-decoration: line-through;
}

.highlight-text {
  background-color: var(--accent);
  padding: 0 4px;
  color: #fff;
}

.small-text {
  font-size: 0.875rem;
}

.uppercase-text {
  text-transform: uppercase;
}

.lowercase-text {
  text-transform: lowercase;
}

.capitalize-text {
  text-transform: capitalize;
}

.muted-text {
  color: #6c757d; /* light grey text */
}

.code-inline {
  background: #ECF2FF;
  color: #5D87FF;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9rem;
}



/* Table styles */


.tableStyle {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.tableStyle thead {
  background: var(--accent);
  color: #fff;
}

.tableStyle th, .tableStyle td {
  padding: 12px 15px;
  text-align: left;
}

.tableStyle tbody tr {
  border-bottom: 1px solid #eaeff4;
  transition: background 0.3s ease;
}

.tableStyle tbody tr:hover {
  background: #f1f5ff;
}

.tableStyle th {
    font-weight: 500;
    font-size: 16px;
    padding: 20px;
}

.tableStyle td {
  font-size: 15px;
  color: #2a3547;
  padding: 20px;
  white-space: nowrap;
}
.resetbtn-toggle.mobile {
  margin-right: 10px;
  display: none ;
}

.logosss {
    width: 80%;
}
/* ---------------------------------------------------------- */
/* Writeups (all-writeups TOC + individual writeup pages)     */
/* ---------------------------------------------------------- */
.writeupWrap { max-width: 820px; padding: 8px 0 40px; }
.writeupWrap .backLink { display: inline-block; margin-bottom: 18px; cursor: pointer; }

.writeupMeta {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.03em;
  color: var(--greytext); margin: 6px 0 14px;
}
.writeupBody { color: var(--text); line-height: 1.7; }
.writeupBody h3 { margin: 26px 0 10px; font-size: 1.15rem; }
.writeupBody p  { margin: 0 0 14px; }
.writeupBody ul { margin: 0 0 14px; padding-left: 20px; }
.writeupBody li { margin-bottom: 6px; }
.writeupBody .code-block { font-size: 15px; margin: 0 0 16px; white-space: pre-wrap; word-break: break-word; }

/* table-of-contents list */
.writeupList { max-width: 820px; display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.writeupItem {
  display: block; width: 100%; text-align: left;
  background: var(--cardback); border: 1px solid var(--borderColor);
  border-radius: 10px; padding: 18px 20px; cursor: pointer; color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.writeupItem:hover { border-color: var(--accent); transform: translateY(-2px); }
.writeupItem .wDate { font-family: 'Space Mono', monospace; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); }
.writeupItem h3 { margin: 6px 0 4px; font-size: 1.1rem; }
.writeupItem .wSummary { margin: 0 0 12px; color: var(--greytext); font-size: 0.92rem; line-height: 1.5; }

/* ---------------------------------------------------------- */
/* Project detail pages (hero visual at full width)           */
/* ---------------------------------------------------------- */
.projectHero {
  border: 1px solid var(--borderColor);
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0 26px;
  line-height: 0;
  background: var(--bg);
}
.projectHero svg.projDiagram,
.projectHero img {
  width: 100%;
  height: auto;
  display: block;
}
/* ============================================================
   Threat-writeup styling
   (scoped so the project pages — nano-lab, cyber-digest,
    email-unpacker — are NOT affected)
   ============================================================ */

/* callout ("Why it works"), links, and reference list */
.writeupBody blockquote {
  margin: 0 0 16px;
  padding: 12px 16px;
  background: var(--cardback);
  border: 1px solid var(--borderColor);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.writeupBody blockquote p { margin: 0; }
.writeupBody a { color: var(--accent); text-decoration: underline; }
.writeupBody .refList { padding-left: 20px; }
.writeupBody .refList li {
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--greytext);
}

/* jump table */
.writeupBody .wuNav {
  border: 1px solid var(--borderColor);
  background: var(--cardback);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 6px 0 8px;
}
.writeupBody .wuNav .wuNavLabel {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--greytext);
  margin-bottom: 9px;
}
.writeupBody .wuNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.writeupBody .wuNav li { margin: 0; }
.writeupBody .wuNav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.writeupBody .wuNav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* clearer separation between sections (writeups only) */
.writeupBody.wuArticle h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--borderColor);
  scroll-margin-top: 24px;   /* bump up if a heading tucks under the tab bar */
}
.writeupBody.wuArticle h3:first-of-type {
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}
.writeupBody.wuArticle h4 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}


/* ============================================================
   My Journey timeline  (moved from journey.html)
   ============================================================ */
.journeyWrap { max-width: 900px; padding: 8px 0 40px; }

.journeyTimeline {
  position: relative;
  margin: 24px 0 0 8px;
  padding-left: 34px;
  border-left: 2px solid var(--borderColor);
}
.jItem { position: relative; padding-bottom: 32px; }
.jItem:last-child { padding-bottom: 4px; }

/* filled dot = role / education milestone */
.jMarker {
  position: absolute;
  left: -43px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-sizing: content-box;
}

.jDate {
  display: inline-block;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.jCard {
  background: var(--cardback);
  border: 1px solid var(--borderColor);
  border-radius: 8px;
  padding: 18px 20px;
}
.jRole { margin: 0 0 2px; font-size: 1.15rem; }
.jOrg  { margin: 0 0 10px; color: var(--greytext); font-weight: 500; font-size: 0.95rem; }
.jDesc { margin: 0; color: var(--text); font-size: 0.95rem; line-height: 1.65; }

/* compact entry = certification (hollow-ring marker, no card) */
.jItem.cert { padding-bottom: 20px; }
.jItem.cert .jMarker {
  left: -39px; top: 5px;
  width: 8px; height: 8px;
  background: var(--bg);
  border: 2px solid var(--accent);
}
.jItem.cert .jDate { margin-bottom: 2px; }
.certEntry { margin: 0; font-size: 0.95rem; color: var(--text); line-height: 1.4; }
.certEntry b { font-weight: 600; }
.certBy { color: var(--greytext); font-size: 0.82rem; margin-left: 8px; }


/* ============================================================
   Nano Lab homelab diagram  (moved from nano-lab.html SVG)
   also styles the same diagram embedded on the about page
   ============================================================ */
.nl-bg{fill:var(--bg);}
.nl-panel{fill:var(--cardback);}
.nl-accfill{fill:var(--accent);opacity:0.12;}
.nl-acc{stroke:var(--accent);fill:none;}
.nl-bd{stroke:var(--borderColor);fill:none;}
.nl-main{fill:var(--text);font-family:'Inter',sans-serif;}
.nl-sub{fill:var(--greytext);font-family:'Inter',sans-serif;}
.nl-title{fill:var(--text);font-family:'Space Grotesk',sans-serif;}
.nl-line{stroke:var(--accent);}
.nl-ah{fill:var(--accent);}
