body , html {
	background-color: var(--color-bg-primary);
	color: var(--color-text-normal);
	transition: background-color 0.3s ease, color 0.3s ease;
	overflow-x: hidden;
	width: 100%;
	position: relative;
	font-family: Montserrat, -apple-system, blinkmacsystemfont, segoe ui, roboto, helvetica neue, arial, noto sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;
}

/* === Typography === */
h1, .h1 , .myname { color: var(--color-text-h1) !important; }
h2, .h2, .section-title { color: var(--color-text-h2) !important; }
h3, .h3, .card-title { color: var(--color-text-h3) !important; }
.second-title, .card-title{ color: var(--color-text-title) !important; }
.text-muted , .section-next-label { color: var(--color-text-muted) !important; }
.normal-text, .section-next-counter { color: var(--color-text-normal) !important;}
/* === Links === */
a {
	color: var(--color-link);
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover, a:focus {
	color: var(--color-link-hover);
}

/* === Tags === */
.tag, .course-tag ,.project-tag{
	background-color: var(--color-tag-bg);
	color: var(--color-tag-text);
	border: 1px solid var(--color-tag-border);
}

/* === Tables === */
thead th {
	background-color: var(--color-table-header-bg);
	color: var(--color-table-header-text);
	text-align: left;
	padding: 0.75rem;
}
tbody tr:nth-child(odd) {
	background-color: var(--color-table-row-bg);
	color: var(--color-table-text);
}
tbody tr:nth-child(even) {
	background-color: var(--color-table-row-alt-bg);
	color: var(--color-table-text);
}
.expertise-table .step-number{
	color: var(--color-table-text);
}
tbody td {
	padding: 0.75rem;
	border-top: 1px solid var(--color-table-border);
}

/* === Social Icons === */
.social-icon {
	color: var(--color-social-icon);
	transition: color 0.3s ease, transform 0.3s ease;
}
.social-icon:hover {
	color: var(--color-social-icon-hover);
	transform: scale(1.1);
}

/* === Navigation === */
.sections-nav-item {
	color: var(--color-nav-text);
}
.sections-nav-item a {
	color: var(--color-nav-text);
}
.sections-nav-item a.active {
	color: var(--color-nav-active);
	font-weight: 600;
}
.sections-nav-item a:hover {
	color: var(--color-nav-active) !important;
	font-weight: 600;
}

/* === Messages / Alerts === */
.alert-success { background-color: var(--color-success); color: #fff; }
.alert-warning { background-color: var(--color-warning); color: #fff; }
.alert-error { background-color: var(--color-error); color: #fff; }

/* === Dividers === */
hr {
	border: 0;
	border-top: 1px solid var(--color-divider);
	margin: 2rem 0;
}

/* === Highlighted Elements === */
.highlight {
	background-color: var(--color-highlight);
	padding: 0.2rem 0.4rem;
	border-radius: 3px;
}

@font-face {
	font-family: "Calsans";
	src: url(../webfonts/CalSans-Regular.woff2) format("woff2");
}

.subtext-font{
	font-size: 16px;
}
.thin-line{
	padding: 4px 0px;
	min-height: 4px;
	border-bottom: 2px solid #9fb9ff;
}

.space-10{
	min-height: 10px;
}

.space-20{
	min-height: 20px;
}
.space-50{
	min-height: 50px;
}
.space-100{
	min-height: 100px;
}
.space-150{
	min-height: 150px;
}
.space-200{
	min-height: 200px;
}

.cv-themes {
	position: fixed;
	height: 2rem;
	width: 8rem;
	top: 10px;
	left: calc(50% - 2rem);
	z-index: 10000;
}

.cv-theme {
	display: block;
	float: left;
	width: 1rem;
	height: 1rem;
	border: .375rem solid transparent;
}

/*.cv-theme:focus {
	outline: none;
}*/

.cv-color-black-white {
	border-color: #000;
	background-color: #fff;
}

.cv-color-yellow-black {
	border-color: #ffdb67;
	background-color: #000;
}

.cv-color-pink-black {
	border-color: #f8a2d5;
	background-color: #000;
}

.cv-color-blue-black {
	border-color: #9fbbff;
	background-color: #000;
}

@media (min-width:360px) and (max-width:576px) {

	.mobile-section-mt{
		margin-top: 30px;
	}
	.article-header {
		margin-bottom: 4rem ;
	}

	.url-button {
		font-size: 16px;
        background-color: #0a3252;
        padding: 7px 12px;
        border-radius: 10px;
        color: white;
        text-decoration: none;
        margin-right: 6px;
        position: relative;
        top: 30px;
	}

	.font-size-h1
	{
		font-size: 20px;
		line-height: 50px;
	}

	.mb-mobile{
		margin-bottom: 40px;
	}

	.normal-desc {
		font-size: 16px ;
		line-height: 26px ; 
	}

	.about-text {
		font-size: 16px ;
		line-height: 30px ;
	}
	#section-06 .section-title {
		margin-bottom: 2rem !important;
	}

	.subtext-font{
		text-align: start;
		font-size: 15px;
	}

	.exprience-data{
		margin-top: 30px ;
	}

	.company-icon {
		margin-left: -20px !important;
		margin-bottom: -10px;
		border-radius: 20px;
	}

	.timeline-date{
		margin-bottom: 0rem  !important;
	}
	.project-card{
		margin-top: 30px;
	}

}

@media (min-width:410px) {
	.font-size-h1
	{
		font-size: 20px;
	}

	.mb-mobile{
		margin-bottom: 25px;
	}

	.article-header {
		margin-bottom: 10rem ;
	}

	.url-button {
		font-size: 16px;
        background-color: #0a3252;
        padding: 7px 12px;
        border-radius: 10px;
        color: white;
        text-decoration: none;
        margin-right: 6px;
        position: relative;
        top: 30px;
	}
	
}

@media (min-width:480px) {

	.font-size-h1
	{
		font-size: 20px;
	}

	.mb-mobile{
		margin-bottom: 20px;
	}

}

@media (min-width:576px) and (max-width:768px)  {

	.font-size-h1
	{
		font-size: 28px;
	}
	
	
	.article-header {
		margin-bottom: 10rem ;
	}

	.url-button {
		font-size: 16px;
        background-color: #0a3252;
        padding: 7px 12px;
        border-radius: 10px;
        color: white;
        text-decoration: none;
        margin-right: 6px;
        position: relative;
        top: 30px;
	}

}

@media (min-width:768px) and (max-width:992px) {

	.font-size-h1
	{
		font-size: 30px;
	}	

	.article-header {
		margin-bottom: 10rem ;
	}
}

@media (min-width:992px) {

	.article-header {
		margin-bottom: 3rem ;
	}

	.font-size-h1
	{
		font-size: 32px;
	}	
	.certificate_image{
		width: 100% !important;
	}

	.url-button {
		font-size: 15px;
        background-color: #0a3252;
        padding: 7px 12px;
        border-radius: 10px;
        color: white;
        text-decoration: none;
        margin-right: 6px;
        position: relative;
        top: 30px;
	}

}

@media (min-width:1200px) {

	.normal-desc{
		font-size: 18px;
		line-height: 28px;
	}

	.url-button
	{
		font-size: 16px;
	}
	.certificate_image{
		width: 120% !important;
	}

	.about-text {
		font-size: 20px;
		line-height: 36px;
		text-align: justify;
	}	

	.url-button {
		font-size: 16px;
		background-color: #0a3252;
		padding: 14px 20px;
		border-radius: 15px;
		color: white;
		text-decoration: none;
		margin-right: 10px;
		position: relative;
		top: 30px;
	}

}

@media (min-width:1430px) {

	.url-button {
		font-size: 18px;
		background-color: #0a3252;
		padding: 14px 36px;
		border-radius: 15px;
		color: white;
		text-decoration: none;
		margin-right: 10px;
		position: relative;
		top: 30px;
	}

}

@media (min-width:1740px) {

	.font-size-h1
	{
		font-size: 44px;
	}	

	.url-button {
		font-size: 20px;
		background-color: #0a3252;
		padding: 14px 36px;
		border-radius: 15px;
		color: white;
		text-decoration: none;
		margin-right: 10px;
		position: relative;
		top: 30px;
	}

}

.timeline-social a:hover {
	text-decoration: none !important;
}




/* ################################################################################# */


.stack-row {
    padding: 0px 0px 20px 0px;
    margin-top: 5px;
	padding-bottom: 40px;
}

.stack-body {
	display: flex;
	align-content: center;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}


.font-riz{
	font-size: 16px;
	font-weight: 500;
	text-transform: lowercase;
}

.normal-desc-sm{
	font-size: 16px;
    line-height: 30px;
    /* text-align: justify; */
}


/* ################################ Table ######################## */


.expertise-table {
	border-radius: 8px;
	overflow: hidden;
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
	margin-top: 20px;
}

.expertise-table th {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.8rem;
}

/* .expertise-table tbody tr:hover {
	background-color: rgba(58, 90, 122, 0.05);
} */

.tag {
	display: inline-block;
	padding: 4px 8px;
	margin: 2px;
	border-radius: 4px;
	font-size: 0.8rem;
}

.section-heading {
	color: #3a5a7a;
	border-bottom: 1px solid rgb(0 0 0 / 12%);
	padding-bottom: 10px;
	margin-bottom: 25px;
}

.step-number {
	font-size: 1.2rem;
	font-weight: 700;
	color: #3a5a7a;
	text-align: center;
	width: 40px;
}

.tech-icon{
	margin-right: 8px;
}


.certificate_image {
    border-radius: 8px;
    /* border: 3px solid #677cb1; */
}


.course-tag {
    display: inline-block;
    padding: 4px 8px;
    margin: 2px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.project-tag {
    display: inline-block;
    padding: 6px 10px;
    margin: 15px 0px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.url-button:hover {
    color: white;
    text-decoration: none;
}


/* ############ Projects Gallery Slider ########################################### */

/* Project Slider Styles */
.project-slider {
	margin-bottom: 2rem;
	margin-top: -100px;
  }
  .post-image{

	margin-bottom: 2rem;
	margin-top: -20px;

  }
  
  .project-slider-main {
	position: relative;
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
  }
  
  .main-image {
	display: none;
	width: 100%;
  }
  
  .main-image.active {
	display: block;
  }
  
  .main-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
  }
  
  .project-slider-thumbs {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 10px;
  }
  
  .thumb {
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	cursor: pointer;
	border-radius: 4px;
	overflow: hidden;
	opacity: 0.7;
	transition: all 0.3s ease;
	border: 2px solid transparent;
  }
  
  .thumb:hover {
	opacity: 0.9;
  }
  
  .thumb.active {
	opacity: 1;
	border-color: #3b82f6;
  }
  
  .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }

  /* For small screens, make thumbnail smaller */
  @media (max-width: 576px) {
	.thumb {
	  flex: 0 0 60px;
	  width: 60px;
	  height: 60px;
	}

  }

  



.project-techtag
{
	margin-top: 40px;
	padding: 10px;
}

ul > li {
	margin-bottom: 12px;

}

@media (max-width:320px) {

	.projects-page .project-card
	{
		padding: 20px 10px;
	}

}

@media (min-width:320px) and (max-width:480px) {

	.project-techtag{
		font-size: 14px;
		margin-top: 20px;
	}

}


@media (max-width:480px) {

	.project-details .normal-desc img{
		width: 100% !important;
		height: auto;
		border-radius: 5px;
	}

	.project-details .normal-desc{
		text-align: left;
		text-justify: auto;
		word-break: normal;
		hyphens: auto;
	}

	.timeline-item{
		padding-left: 2rem !important;
        padding-right: 1rem;
	}

	.font-size-h1 {
        font-size: 24px;
    }

	.section-title {
		margin-bottom: 2rem;
		font-size: 2rem;
		color: #273F4F;
	}

	.honor-box{
		display: flex !important;
		flex-wrap: wrap;
		padding: 0px 0px;
	}

	.post-box{
		display: flex !important;
		flex-wrap: wrap;
		padding: 0px 0px;
	}

	.honor-box img{
		margin-bottom: 20px;
	}

	.second-title , .card-title{
		font-size: 1.3rem;
		line-height: 30px;
	}

	.projects-page , .posts-page {
		padding: 20px 20px;
		position: relative;
		top: -30px;
	}

	.project-slider .main-image img{
		border-radius: 26px ;
	}

	.article-title {
        font-size: 2rem;
		line-height: 40px;
        margin-bottom: 20px;
    }

	.article-subtitle{
		font-size: 16px;
		margin-bottom: 40px;
	}
	.project-buttons , .posts-buttons {
		font-size: 12px;
	}

	.normal-desc , .normal-desc-sm{
		text-align: left !important;
		padding-right: 10px;
	}
	.project-title , .post-title{
		font-size: 19px !important;
		color: #273F4F ;
		font-weight: 600;
		line-height: 30px !important;
		margin-bottom: -8px !important;
		margin-top: -4px !important;
	}

	#section-04 .timeline-item{
		padding-left: 3rem !important;
        padding-right: 5px;
	}
	#section-00 .myname{
		margin-top: -10px;
		margin-bottom: -10px;
	}

/* 
	#section-04 img{
		width: 100%; 
		border-radius: 20px !important;
	} */

	#section-06 .tech-icon{
		width: 10% !important;
	}
	 
	#section-06 .section-title img {
        width: 70px;
    }

	.project-card-content
	{
		padding-left: 10px;
	}

	.section-project-title
	{
		display: flex;
		flex-wrap: wrap;
		padding: 5px 10px;
	}
	.project-buttons , .posts-buttons
	{
		position: relative;
		top: 30px;
	}


	#section-09 .card-body{
		padding: 0.5rem 0;
	}

	.error-font{
		margin-top: 50px;
		font-size: 70px;
	}

	#page-top{
		padding: 50px 20px;
	}
	.timeline-social a{
		margin-right: 3px !important;
	}
	
	.project-buttons , .posts-buttons{
		position: relative;
		top: 0px;
	}

	.certificate_image {
		position: relative;
		left: 15px;
		top: -5px;
		width: 90%;
		margin-bottom: 10px;
	}
	.posts_images{
		position: relative;
        left: 0px;
        top: 0px;
        width: 100%;
        margin-bottom: -6px;
		border-radius: 5px;
	}

	.post-buttons {
		background: var(--color-tag-bg);
		color: var(--color-tag-text);
		padding: 10px 20px;
		border-radius: 10px !important;
		margin: 1px;
		margin-right: 0px !important;
		display: inline-block;
	}
	.post-category-badge{
		display: none !important;
	}
	.post-card-content {
		margin-top: 9px !important;
	}
	.post-title {
		margin-top: 5px !important;
	}

	.post-img-box{
		flex-wrap: wrap !important;
	}

	.post-share-buttons{
		display: inline;
        width: 50%;
        margin-bottom: 5px !important;
        font-size: 12px;
        padding: 6px 15px !important;
        border-radius: 5px !important;
	}
	.sections-nav-item a{
		font-size: 16px !important;
	}
	

}

@media (min-width:768px) and (max-width:1023px) {

	.timeline-item{
		padding-left: 2rem;
	}
	.exprience-data{
		padding-left: 2rem !important;
	}

	.projects-page , .posts-page{
		padding: 20px 40px;
	}

	.projects-page .project-card
	{
		padding: 10px 10px;
	}

	.project-title, .post-title
	{
		margin-top: 5px;
		font-size: 16px !important;
	}

	.section-title {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}

	.project-details .article{
		padding: 20px 60px;
	}
	.project-details .url-button
	{
		display: block;
		margin-bottom: 10px;
		text-align: center;
		width: calc(40%);
	}
	.article-title{
		font-size: 3rem;
	}

	.article-header {
        margin-bottom: 2rem;
    }
	.project-buttons , .article-subtitle , .posts-buttons{
		font-size:14px ;
	}

	.project-techtag{
		font-size: 14px;
		margin-top: 20px;
	}

	.project-slider .main-image img{
		border-radius: 30px ;
		width: calc(60%);
		margin-top: 100px;
	}

	.normal-desc
	{
		font-size: 16px;
	}

	.error-font{
		margin-top: 50px;
		font-size: 80px;
	}

	.max-box h1 , .max-box p{
		text-align: center;
	}


}


@media (min-width:1024px) and (max-width:1200px) {

	.timeline-item{
		padding-left: 2rem;
	}
	.exprience-data{
		padding-left: 2rem !important;
	}

	.section-title {
		font-size: 2rem;
	}

	.projects-page , .posts-page{
		padding: 20px 50px;
	}

	.projects-page .project-card
	{
		padding: 20px 10px;
	}

	.project-title , .post-title
	{
		margin-top: 5px;
		font-size: 16px !important;
	}

	.section-title {
		margin-bottom: 2rem;
	}

	.project-details .article{
		padding: 20px 60px;
	}
	.project-details .url-button
	{
		display: block;
		margin-bottom: 10px;
	}
	.article-title{
		font-size: 2rem;
	}

	.article-header {
        margin-bottom: 2rem;
    }
	.project-buttons , .article-subtitle ,.posts-buttons{
		font-size:14px ;
	}

	.project-techtag{
		font-size: 12px;
		margin-top: 20px;
	}

	.normal-desc{
		font-size: 14px;
	}

	.project-slider .main-image img{
		border-radius: 24px ;
	}

	#page-top{
		padding-top: 50px;
	}
	.company-icon { margin-left: 0px; }


	
}
@media (min-width:1201px) and (max-width:1439px) {

	.timeline-item{
		padding-left: 2rem;
	}
	.exprience-data{
		padding-left: 3rem !important;
	}

	.sections-nav-link {
		font-size: 16px;
		padding-top: 0px ;
	}

	.section-body {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.font-size-h1 {
        font-size: 34px;
    }

	.jumbotron-img {
		width: 280px;
		height: 280px;
		margin-bottom: 2.2rem;
	}

	.section-title {
		margin-bottom: 3rem;
		font-size: 2.5rem;
		color: #273F4F;
	}

	.section-footer {
		padding-bottom: 8rem;
	}

	.sections-nav-container {
        position: fixed;
        top: 3rem;
	}

	.sections-nav-info {
		padding-top: 1rem;
		padding-left: 2rem;
	}

	.about-text {
        font-size: 16px;
        line-height: 30px;
        text-align: justify;
    }
	.cv-download-button{
		font-size: 12px;
	}

	.second-title, .card-title {
		font-size: 20px;
	}

	.project-title , .post-title
	{
		margin-top: 5px;
		font-size: 20px !important;
		color: #273F4F;
		font-weight: 600;
	}
	.projects-page .project-card
	{
		padding: 20px 10px;
	}

	.project-details .article{
		padding: 20px 60px;
	}

	.with-header {
		padding-top: 3rem;
	}

	.article-title {
        font-size: 2.3rem;
    }

	.article-header {
        margin-bottom: 2rem;
    }

	.project-slider .main-image img{
		border-radius: 28px ;
	}

	.project-techtag{
		font-size: 14px;
		margin-top: 20px;
	}

	.project-buttons ,.posts-buttons{
		font-size: 14px;
		display: inline-block;
		margin-top: 5px !important;
	}

	.projects-page , .posts-page{
		padding: 20px 80px;
	}

	.project-details .url-button
	{
		font-size: 14px;
	}

	#page-top{
		padding-top: 90px;
	}

	.company-icon { margin-left: 0px; }

}

@media (min-width:1440px) and (max-width:1920px) {

	.timeline-item{
		padding-left: 2rem;
	}
	.exprience-data{
		padding-left: 1rem !important;
	}

	.sections-nav-link {
		font-size: 18px;
	}
	.section-body {
		padding-top: 8rem;
		padding-bottom: 5rem;
	}

	.section-title {
        font-size: 3rem;
    }

	.projects-page , .posts-page{
		padding: 20px 80px;
	}

	.projects-page .project-card
	{
		padding: 20px 20px;
	}

	.project-buttons ,.posts-buttons{
		font-size: 16px;
	}

	.project-details .article{
		padding: 20px 60px;
	}
	.project-details .url-button
	{
		font-size: 16px;
	}
	.article-title{
		font-size: 2.5rem;
	}

	.article-header {
        margin-bottom: 2rem;
    }
	.project-slider .main-image img{
		border-radius: 34px ;
	}

	.normal-desc-sm{
		font-size: 18px;
    	line-height: 34px;
	}

	.error-font{
		font-size: 140px;
	}

	#page-top{
		padding-top: 120px;
	}

	.company-icon { margin-left: 0px; }

}

@media (min-width:1921px) and (max-width:2600px) {
	.sections-nav-link {
		font-size: 20px;
	}

	.projects-page , .posts-page{
		padding: 20px 80px;
	}

	.projects-page .project-card
	{
		padding: 20px 30px;
	}

	.project-buttons ,.posts-buttons{
		font-size: 16px;
	}

	.project-slider .main-image img{
		border-radius: 40px ;
	}

	.normal-desc-sm{
		font-size: 20px;
    	line-height: 38px;
	}

	.error-font{
		font-size: 160px;
	}

	.company-icon { margin-left: 0px; }

	
}

.project-title , .post-title
{
	margin-top: 5px;
	font-size: 24px;
	color: var(--color-text-title);
	font-weight: 600;
	line-height: 38px;
}

#section-06 img{
	border-radius: 10px;
}

.projects-page img{
	border-radius: 20px;
}

.section-project-title{

	display: flex;
	justify-content: space-between;
    align-items: center;

	margin-bottom: 5rem;

}

.project-buttons ,.posts-buttons{
	background-color: var(--color-button-primary-bg);
	color: var(--color-button-primary-text) !important;
	border-radius: 15px;
	padding: 15px 30px;
	text-decoration: none;
	margin: 0px 5px;
}

.post-share-buttons{
	background-color: var(--color-button-primary-bg);
	color: var(--color-button-primary-text) !important;
	border-radius: 15px;
	padding: 15px 30px;
	text-decoration: none;
	margin: 0px 5px;
}

.project-buttons:hover , .posts-buttons:hover {
	background-color:var(--color-button-secondary-bg) ;
	color:var(--color-button-secondary-text) !important;
	text-decoration: none !important;
	margin-top: -5px;
	transition: 0.3s;
}


.font-14{
	font-size: 14px;
}

.font-16{
	font-size: 16px;
}

.font-18{
	font-size: 18px;
}

.back-buttons{
	margin-top: -40px;
	margin-bottom: 30px;
}


.normal-desc , .normal-desc-sm{
	text-align: justify;
	text-justify: distribute;
	word-break: break-word;
	hyphens: auto;
}

#overview{
	min-height: auto;
}



#section-05 img {
	border-radius: 12px !important;
}

.honor-icon img{
	border-radius: 10px !important;
	border: 1px solid color-mix(in srgb, var(--color-text-normal) 30%, transparent);
    padding: 3px;
}

.exprience-data img {
	border-radius: 10px;
	margin-top: -20px;
}

ul {
	padding-left: 15px !important;
    padding-right: 15px;
}

ul#sections-nav{
	padding-left: 0px !important;
    padding-right: 0px;	
	border-left: 1px solid color-mix(in srgb, var(--color-nav-text) 70%, transparent);
	background-color: var(--color-bg-primary);
}

.projects-title{
	margin-top: 3rem;
    margin-bottom: 1rem;
}
.projects-head{
	
	margin-bottom: 3rem;
}


.transition {
	transition: 300ms;
}

.progress-bar {
  width: var(--progress);
}

.post-buttons {
	background: var(--color-tag-bg);
	color: var(--color-tag-text);
	border: 1px solid var(--color-tag-border);
    padding: 10px 30px;
    border-radius: 35px;
	margin-right: 10px;
}

.post-buttons:hover {
	text-decoration: none !important;
	color: var(--color-tag-text);
}

.posts_images{
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	margin-bottom: -6px;
	border-radius: 5px;	
}

.post-card-content{
	margin-top: 5px !important;
}


















.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	background: var(--color-bg-primary);
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: fixed;
	top: 20px;
	right: 20px;
}

.mobile-menu-toggle span {
	width: 30px;
	height: 3px;
	background: var(--color-text-normal);
	border-radius: 10px;
	transition: all 0.3s linear;
	position: relative;
	transform-origin: 1px;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg);
	width: 24px;
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg);
	width: 24px;
}

/* Mobile styles */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
		padding: 0px;
	}
	
	.sections-nav-container {
		position: fixed;
		top: 0;
		left: 20%;
		width: 100%;
		height: 100vh;
		background: #fff;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease-in-out;
		z-index: 1000;
		overflow-y: auto;

	}
	
	.sections-nav-container.active {
		left: -108%;
	}
	
	#sections-nav {
		flex-direction: column;
		padding: 0px 20px 20px;
		margin: 0;
	}
	
	.sections-nav-item {
		width: 100%;
		margin: 0;
		border-bottom: 1px solid #eeeeee44;
	}
	
	.sections-nav-link {
		display: block;
		padding: 20px 30px;
		text-align: left;
	}
	
	.sections-nav-info {
		padding: 20px 30px;
	}
	.section-project-title{
		margin-bottom: 2rem;
	}
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
	display: block;
	opacity: 1;
}

@media (max-width: 768px) {
	.mobile-menu-overlay.active {
		display: block;
	}
}