/* 1.1.general-setting-pages *************************/
/****************************************************/
:root {
	--pr-color: #fff;
	--second-color: #0a0a0a;
	--cubicbz: cubic-bezier(.9, 0, .1, 1);
	--fz-big: 60px;
	--text-color: #ffffff;
	--card-bg: #000000;
	--glow-color: rgba(255, 255, 255, 0.15);
	--glow-strong: rgba(255, 255, 255, 0.3);
}

* {
	box-sizing: border-box;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	margin: 0;
	padding: 0;
	font-feature-settings: 'pnum' on, 'lnum' on;
}

body {
	background: var(--second-color);
	overflow-x: hidden;
}

section {
	padding-top: 150px;
	padding-bottom: 50px;
}

.wrapp {
	width: 100%;
	height: auto;
	overflow: hidden;
	z-index: 1;
}

.content {
	width: 100%;
	padding: 0 70px;
}

.char {
	display: inline-block;
}

/* Paralax Effect On GSAP **********************************/
/* header ********/
  /* header ********/
  .header {
	position: relative;
	display: flex;
	padding: 0 5vw;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.header__marq {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	background: #171717;
	overflow: hidden;
}

.header__marq-wrapp {
	display: flex;
	width: 100%;
	height: auto;
	padding: 8px 5vw;
	overflow: hidden;
}

.header__marq-txt {
	position: relative;
	flex: 0 0 auto;
	display: inline-block;
	padding-right: 45px;
	margin-right: 15px;
	text-transform: uppercase;
	color: var(--secondary-color);
	font-size: clamp(16px, 4vw, 35px);
	white-space: nowrap;
}

.header__marq-star {
	position: absolute;
	width: clamp(20px, 4vw, 40px);
	height: clamp(20px, 4vw, 40px);
	right: 0;
}

.header__marq-star img {
	display: block;
	width: 100%;
	height: 100%;
}

.title {
	position: relative;
	margin: 0;
	font-size: clamp(32px, 8vw, 85px);
	text-align: center;
	color: var(--pr-color);
	text-transform: uppercase;
	mix-blend-mode: difference;
	z-index: 2;
	line-height: 1.1;
}

.title_paralax {
	display: inline-block;
	will-change: transform;
	position: relative;
}

.title .stroke {
	display: inline-block;
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
}

.header__img {
	position: absolute;
	width: 45%;
	height: 100%;
	top: 0;
	right: 5vw;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	overflow: hidden;
}

.header__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	
}

.section-title__square {
	position: absolute;
	display: inline-block;
	width: clamp(60px, 10vw, 130px);
	height: clamp(60px, 10vw, 130px);
	border: 1px solid var(--border-color);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
	.header__img {
		width: 40%;
	}
}

@media screen and (max-width: 992px) {
	.header {
		padding: 0 4vw;
	}
	
	.header__img {
		width: 35%;
		right: 4vw;
	}
}

@media screen and (max-width: 768px) {
	.title br {
		display: none;
	}
	
	.header__img {
		width: 100%;
		height: 100%;
		opacity: 0.3;
		right: 0;
		z-index: 0;
	}
	
	.header__marq-wrapp {
		padding: 8px 3vw;
	}
	
	.header__marq-txt {
		padding-right: 35px;
		margin-right: 10px;
	}
}


.marquee-animation {
	display: flex;
	animation: marquee 20s linear infinite;
}

.section-title {
	position: relative;
	margin: 0;
	margin-bottom: 60px;
	line-height: .8;
	font-size: 70px;
	text-align: center;
	color: var(--pr-color);
	text-transform: uppercase;
}

.section-title .stroke {
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
}

.section-title__square {
	position: absolute;
	display: inline-block;
	width: 130px;
	height: 130px;
	border: 1px solid #4b4b4b;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

@media screen and (max-width: 576px) {
	.header {
		padding: 0 20px;
	}
	
	.title {
		font-size: 7vw;
	}
	
	.title .stroke {
		-webkit-text-stroke: 0.5px var(--pr-color);
	}
	
	.header__marq-wrapp {
		padding: 5px 20px;
	}
	
	.header__marq-txt {
		padding-right: 25px;
		margin-right: 5px;
	}
	
	.section-title__square {
		width: 50px;
		height: 50px;
	}
}

/* Animation for marquee */
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
/* about ********/

.about .section-title {
	text-align: left;
}

.about {
	padding: 100px 5vw;
}

.about__wrapp {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.about__img, .about__txt {
	width: calc(50% - 15px);
	height: auto;
}

.about__txt {
	padding-right: clamp(20px, 5vw, 70px);
}

.about__p {
	line-height: 1.4;
	font-size: clamp(16px, 2vw, 20px);
	color: var(--text-color);
}

.about__p + .about__p {
	margin-top: 20px;
}

.about__img {
	height: 100vh;
	max-height: 800px;
	overflow: hidden;
}

.about__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
	.about__img {
		height: 80vh;
	}
}

@media screen and (max-width: 992px) {
	.about {
		padding: 80px 4vw;
	}
	
	.section-title {
		margin-bottom: 40px;
	}
	
	.about__img {
		height: 70vh;
	}
}

@media screen and (max-width: 768px) {
	.about {
		padding: 60px 4vw;
	}
	
	.about__wrapp {
		flex-direction: column;
	}
	
	.about__img, .about__txt {
		width: 100%;
	}
	
	.about__txt {
		padding-right: 0;
		order: 2;
	}
	
	.about__img {
		height: 60vh;
		order: 1;
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 576px) {
	.about {
		padding: 50px 20px;
	}
	
	.section-title {
		margin-bottom: 30px;
	}
	
	.about__img {
		height: 50vh;
	}
	
	.about__p + .about__p {
		margin-top: 15px;
	}
}
/* people ********/
.team {
	padding: 60px 20px;
	position: relative;
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
  }
  
  .section-title {
	text-align: center;
	font-size: 48px;
	margin-bottom: 50px;
	position: relative;
  }
  
  .stroke {
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
  }
  
  .team-slider {
	position: relative;
	width: 100%;
	height: 590px; /* Increased height for images */
	overflow: hidden;
  }
  
  .slider-container {
	display: flex;
	transition: transform 0.5s ease-in-out;
	height: 100%;
  }
  
  .team__item {
	min-width: calc(33.33% - 20px);
	margin: 0 10px;
	background-color:  #171717;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	padding: 20px;
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
  }
  
  .team__image-container {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 15px;
	position: relative;
  }
  
  .team__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	
  }
  
  .team__item:hover .team__image {
	transform: scale(1.05);
  }
  
  .team__num {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 28px;
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
	z-index: 2;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .team__name {
	font-size: 22px;
	font-weight: bold;
	color: var(--text-color);
	margin-bottom: 5px;
  }
  
  .team__role {
	font-size: 16px;
	color: var(--pr-color);
	margin-bottom: 12px;
  }
  
  .team__p {
	font-size: 14px;
	color: var(--text-color);
	margin-bottom: 15px;
	flex-grow: 1;
  }
  
  /* New profile actions container */
  .profile-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
  }
  
  .social-links {
	display: flex;
	gap: 10px;
  }
  
  .social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #ccc;
	transition: all 0.3s ease;
  }
  
  .social-link:hover {
	background-color: var(--pr-color);
  }
  
  .social-link:hover svg {
	fill: rgb(0, 0, 0);
  }
  
  .social-link svg {
	width: 18px;
	height: 18px;
	fill: black;
	transition: fill 0.3s ease;
  }
  
  /* Modified visit button with SVG arrow */
  .visit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	color: rgb(0, 0, 0);
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	background-color: #ccc;
  }
  
  .arrow-icon {
	width: 30px;
	height: 20px;
	fill: rgb(0, 0, 0);
	margin-left: 4px;
	transition: transform 0.3s ease;
  }
  
  .visit-btn:hover {
	color: rgb(0, 0, 0);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(72, 70, 70, 0.2);
  }
  
  .visit-btn:hover .arrow-icon {
	transform: translateX(3px);
  }
  
  .slide-indicator {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
  }
  
  .indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ccc;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  .indicator.active {
	background-color: var(--pr-color);
	transform: scale(1.2);
  }
  
  /* Email icon */
  .email-icon svg {
	width: 18px;
	height: 18px;
  }
  
  /* Improved responsive styles */
  @media (max-width: 1024px) {
	.team__item {
	  min-width: calc(50% - 20px);
	}
	
	.team-slider {
	  height: 580px;
	}
	
	.section-title {
	  font-size: 42px;
	}
  }
  
  @media (max-width: 768px) {
	.team__item {
	  min-width: calc(100% - 20px);
	}
	
	.team-slider {
	  height: 560px;
	}
	
	.section-title {
	  font-size: 36px;
	}
	
	.arrow {
	  width: 40px;
	  height: 40px;
	}
	
	.arrow svg {
	  width: 80px;
	  height: 80px;
	}
	
	/* Handle responsive layout for smaller screens */
	.profile-actions {
	  flex-direction: column;
	  align-items: flex-start;
	  gap: 12px;
	}
	
	.social-links {
	  margin-bottom: 0;
	}
	
	.visit-btn {
	  width: 100%;
	  justify-content: space-between;
	  padding: 8px 15px;
	}
  }
  
  @media (max-width: 480px) {
	.team {
	  padding: 40px 15px;
	}
	
	.team-slider {
	  height: 540px;
	}
	
	.section-title {
	  font-size: 30px;
	  margin-bottom: 30px;
	}
	
	.team__name {
	  font-size: 20px;
	}
	
	.team__role {
	  font-size: 14px;
	}
	
	.team__p {
	  font-size: 13px;
	}
	
	.visit-btn {
	  font-size: 14px;
	}
	
	.social-link {
	  width: 28px;
	  height: 28px;
	}
	
	.social-link svg {
	  width: 16px;
	  height: 16px;
	}
  }



/* Work Section */
 
  /* Work Section */
  .work {
	padding-top: 100px;
  }

  .content {
	padding: 0 40px;
	margin-bottom: 50px;
  }

  .section-title {
	font-size: 60px;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 30px;
  }

  

 
  .work__wrapp {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding: 0 40px;
  }

  .work__item {
	position: relative;
	width: calc(50% - 20px);
	height: 70vh;
	overflow: hidden;
	cursor: pointer;
  }

  .work__item-num {
	position: absolute;
	display: inline-block;
	font-size: 50px;
	color: var(--pr-color);
	mix-blend-mode: difference;
	z-index: 2;
	top: 20px;
	left: 20px;
  }

  .work__item-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
  }

  .work__item-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
  }

  .work__item:hover .work__item-img img {
	transform: scale(1.05);
  }

  /* Arrow (CSS only approach) */
  .work__item-arrow {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	background-color: var(--pr-color);
	border-radius: 50%;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	z-index: 3;
	transition: transform 0.3s ease;
  }

  .work__item-arrow svg {
	width: 24px;
	height: 24px;
	fill: rgb(0, 0, 0);
	transform: rotate(180deg);
	transition: transform 0.3s ease;
  }

  /* Project Details - CSS Only Solution */
  .project-details {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	padding: 40px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateX(100%);
	transition: transform 0.4s ease;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
  }

  /* The CSS-only toggle mechanism */
  .work__item-checkbox {
	position: absolute;
	opacity: 0;
	z-index: -1;
  }

  /* When checkbox is checked, show the project details */
  .work__item-checkbox:checked ~ .project-details {
	transform: translateX(0);
	opacity: 1;
	pointer-events: all;
	z-index: 4;
  }

  /* Style the arrow to look like a button when the area is focused */
  .work__item-checkbox:focus ~ .work__item-arrow {
	box-shadow: 0 0 0 2px white;
  }

  /* Style the close button */
  .close-label {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background-color: var(--pr-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
  }

  .close-label svg {
	width: 20px;
	height: 20px;
	fill: rgb(0, 0, 0);
  }

  .project-title {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--pr-color);
  }

  .project-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
	color: #fff;
  }

  .project-link {
	display: inline-block;
	padding: 10px 20px;
	background-color: var(--pr-color);
	color: rgb(0, 0, 0);
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 20px;
	transition: background-color 0.3s ease;
	width: fit-content;
  }

  .project-link:hover {
	background-color: #ff4f4f;
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
	.work__wrapp {
	  padding: 0 20px;
	  gap: 30px;
	}

	.section-title {
	  font-size: 50px;
	}

	.work__item-num {
	  font-size: 40px;
	}
  }

  @media (max-width: 768px) {
	.work {
	  padding-top: 70px;
	}

	.work__wrapp {
	  gap: 20px;
	}

	.work__item {
	  width: 100%;
	  height: 60vh;
	}

	.content {
	  padding: 0 20px;
	}

	.section-title {
	  font-size: 40px;
	}

	.work__item-num {
	  font-size: 30px;
	}

	.project-title {
	  font-size: 28px;
	}
  }

  @media (max-width: 480px) {
	.work {
	  padding-top: 50px;
	}

	.work__wrapp {
	  padding: 0 10px;
	}

	.content {
	  padding: 0 10px;
	}

	.section-title {
	  font-size: 32px;
	}

	.work__item {
	  height: 50vh;
	}

	.work__item-num {
	  font-size: 24px;
	}

	.project-title {
	  font-size: 24px;
	}

	.work__item-arrow {
	  width: 45px;
	  height: 45px;
	}
  }
/* serv ********/
/* Services Section with HTML-only Navigation */

/* Remove any default link styling */
.serv__item-link {
	text-decoration: none;
	color: inherit;
	display: block;
  }
  
  /* Styling for service items */
  .serv__item {
	position: relative;
	padding: 40px 0;
	border-bottom: 1px solid #2f2e2e;
	transition: background-color 0.3s ease;
  }
  
  .serv__item-link:hover .serv__item {
	background-color: rgba(75, 75, 75, 0.1);
  }
  
  /* Arrow styling */
  .serv__item-arrow {
	position: absolute;
	display: inline-block;
	width: 55px;
	height: 55px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
  }
  
  .serv__item-arrow img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: rotate(180deg);
	transition: transform 0.3s ease;
  }
  
  .serv__item-link:hover .serv__item-arrow {
	transform: translateY(-50%) scale(1.1);
  }
  
  .serv__item-link:hover .serv__item-arrow img {
	transform: rotate(135deg);
  }
  
  /* Text styling */
  .serv__item-txt {
	font-size: 50px;
	color: #4b4b4b;
	text-transform: uppercase;
	transition: color 0.3s ease;
  }
  
  .serv__item-link:hover .serv__item-txt {
	color: #ffffff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
	.serv__item-txt {
	  font-size: 36px;
	}
	
	.serv__item-arrow {
	  width: 40px;
	  height: 40px;
	}
  }
  
  @media (max-width: 480px) {
	.serv__item-txt {
	  font-size: 24px;
	}
	
	.serv__item {
	  padding: 25px 0;
	}
	
	.serv__item-arrow {
	  width: 30px;
	  height: 30px;
	}
  }
/* footer ********/
/* Responsive Footer Styles */

.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
  }
  
  .footer__div {
	font-size: 70px;
	letter-spacing: 15px;
	color: var(--pr-color);
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	max-width: 1200px;
	transition: all 0.3s ease;
  }
  
  .footer__div span {
	display: inline-block;
  }
  
  /* Large screens (1200px and below) */
  @media screen and (max-width: 1200px) {
	.footer__div {
	  font-size: 60px;
	  letter-spacing: 12px;
	}
  }
  
  /* Medium screens (992px and below) */
  @media screen and (max-width: 992px) {
	.footer__div {
	  font-size: 50px;
	  letter-spacing: 10px;
	}
  }
  
  /* Tablets (768px and below) */
  @media screen and (max-width: 768px) {
	.footer__div {
	  font-size: 40px;
	  letter-spacing: 8px;
	}
  }
  
  /* Large mobile devices (576px and below) */
  @media screen and (max-width: 576px) {
	.footer__div {
	  font-size: 30px;
	  letter-spacing: 6px;
	}
	
	.footer {
	  height: auto;
	  min-height: 50vh;
	}
  }
  
  /* Small mobile devices (400px and below) */
  @media screen and (max-width: 400px) {
	.footer__div {
	  font-size: 24px;
	  letter-spacing: 4px;
	}
  }
  
  /* Very small mobile devices (320px and below) */
  @media screen and (max-width: 320px) {
	.footer__div {
	  font-size: 20px;
	  letter-spacing: 3px;
	}
  }
  
  /* Height-based media queries for better vertical responsiveness */
  @media screen and (max-height: 700px) {
	.footer {
	  height: auto;
	  min-height: 400px;
	}
  }
  
  @media screen and (max-height: 500px) {
	.footer {
	  height: auto;
	  min-height: 300px;
	}
	
	.footer__div {
	  font-size: smaller;
	}
  }

/* navbar styles - add this to your CSS file */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 70px;
	z-index: 100;
	mix-blend-mode: difference;
	transition: background-color 0.4s var(--cubicbz);
  }
  
  .navbar__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .navbar__left, .navbar__right {
	flex: 1;
  }
  
  .navbar__center {
	flex: 2;
	text-align: center;
  }
  
  .navbar__logo {
	font-size: 24px;
	color: var(--pr-color);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
  }
  
  .navbar__right {
	display: flex;
	justify-content: flex-end;
  }
  
  .navbar__hamburger {
	position: relative;
	width: 35px;
	height: 30px;
	cursor: pointer;
	z-index: 101;
  }
  
  .navbar__hamburger span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--pr-color);
	transition: all 0.3s var(--cubicbz);
  }
  
  .navbar__hamburger span:first-child {
	top: 0;
  }
  
  .navbar__hamburger span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
  }
  
  .navbar__hamburger span:last-child {
	bottom: 0;
  }
  
  /* Hamburger animation for open state */
  .navbar__hamburger.active span:first-child {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
  }
  
  .navbar__hamburger.active span:nth-child(2) {
	opacity: 0;
  }
  
  .navbar__hamburger.active span:last-child {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
  }
  
  /* Add black background when menu is active */
  .navbar.menu-active {
	background-color: #000;
	mix-blend-mode: normal; /* Switch off mix-blend-mode when menu is open */
  }
  
  /* Menu styles */
  .navbar__menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.95); /* Slightly transparent black */
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateX(100%);
	transition: transform 0.6s var(--cubicbz);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
  }
  
  .navbar__menu.active {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
  }
  
  .navbar__menu-list {
	list-style: none;
	text-align: center;
	z-index: 2;
	position: relative;
  }
  
  .navbar__menu-item {
	margin: 25px 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	transition-delay: 0.1s;
	cursor: pointer;
  }
  
  .navbar__menu.active .navbar__menu-item {
	opacity: 1;
	transform: translateY(0);
  }
  
  /* Stagger the animation delay for each menu item */
  .navbar__menu.active .navbar__menu-item:nth-child(1) { transition-delay: 0.1s; }
  .navbar__menu.active .navbar__menu-item:nth-child(2) { transition-delay: 0.2s; }
  .navbar__menu.active .navbar__menu-item:nth-child(3) { transition-delay: 0.3s; }
  .navbar__menu.active .navbar__menu-item:nth-child(4) { transition-delay: 0.4s; }
  .navbar__menu.active .navbar__menu-item:nth-child(5) { transition-delay: 0.5s; }
  
  .navbar__menu-item a {
	position: relative;
	font-size: 55px;
	color: var(--pr-color);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s ease;
  }
  
  .navbar__menu-item a:hover {
	
	color: transparent;
	-webkit-text-stroke: 1px var(--pr-color);
  }
  
  .navbar__menu-item a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--pr-color);
	transition: width 0.3s var(--cubicbz);
  }
  
  .navbar__menu-item a:hover::after {
	width: 100%;
  }
  
  /* Image hover effect */
  .navbar__menu-img-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
  }
  
  .navbar__menu-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.5s var(--cubicbz);
  }
  
  .navbar__menu-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for better text readability */
  }
  
  /* For body, to prevent scrolling when menu is open */
  body.no-scroll {
	overflow: hidden;
  }




  html {
	background-color: var(--second-color);
	color: var(--text-color);
	overflow-x: hidden;
	scroll-behavior: smooth;
	position: relative;
}

/* Glow background effect */
html::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 20%, var(--glow-color) 0%, transparent 40%),
		radial-gradient(circle at 80% 50%, var(--glow-color) 0%, transparent 30%),
		radial-gradient(circle at 40% 80%, var(--glow-color) 0%, transparent 40%),
		var(--second-color);
	z-index: -1;
}

.timeline-container {
	position: relative;
	width: 100%;
	max-width: 100vw;
	padding: 80px 0;
}

.timeline-line {
	position: fixed;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	
	transform: translateX(-50%);
	z-index: 1;
	
}

.timeline-item {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	scroll-snap-align: start;
}

.timeline-dot {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 70px;
	height: 70px;
	background-color: var(--card-bg);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	border: 2px solid var(--pr-color);
	box-shadow: 0 0 20px var(--glow-color);
	transition: all 0.5s var(--cubicbz);
}

.timeline-logo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 10px var(--glow-color);
}

.timeline-date {
	position: absolute;
	left: 55%;
	top: 50%;
	transform: translateY(-50%);
	color: var(--pr-color);
	font-size: 18px;
	width: 250px;
	font-weight: 300;
	letter-spacing: 1px;
	opacity: 0.7;
	transition: all 0.4s var(--cubicbz);
	text-shadow: 0 0 10px var(--glow-color);
}

.timeline-content {
	position: relative;
	width: 40%;
	background-color: var(--card-bg);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
				0 0 20px var(--glow-color);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transform: translateY(20px);
	transition: transform 0.7s var(--cubicbz), box-shadow 0.7s var(--cubicbz);
	overflow: hidden;
}

/* Glow effect inside content box */
.timeline-content::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, var(--glow-color) 0%, transparent 70%);
	opacity: 0.1;
	z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-right: auto;
	margin-left: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-left: auto;
	margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-date {
	left: auto;
	right: 55%;
	text-align: right;
}

.timeline-item:hover .timeline-content {
	transform: translateY(0);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
				0 0 30px var(--glow-strong);
}

.timeline-item:target .timeline-content {
	transform: translateY(0);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7),
				0 0 40px var(--glow-strong);
}

.timeline-item:target .timeline-dot {
	transform: translate(-50%, -50%) scale(1.2);
	box-shadow: 0 0 30px var(--glow-strong);
}

.timeline-item:target .timeline-date {
	opacity: 1;
	text-shadow: 0 0 15px var(--glow-strong);
}

.job-title {
	font-size: var(--fz-big);
	font-weight: 700;
	margin-bottom: 10px;
	background: linear-gradient(to right, var(--pr-color), rgba(255,255,255,0.7));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.1;
	text-shadow: 0 0 20px var(--glow-color);
}

.company {
	font-size: 24px;
	color: var(--pr-color);
	margin-bottom: 25px;
	font-weight: 400;
	opacity: 0.8;
	text-shadow: 0 0 10px var(--glow-color);
}

.responsibilities {
	list-style-type: none;
	margin-top: 30px;
}

.responsibilities li {
	margin-bottom: 15px;
	line-height: 1.6;
	position: relative;
	padding-left: 25px;
}

.responsibilities li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--pr-color);
	text-shadow: 0 0 10px var(--glow-color);
}

/* Navigation dots */
.timeline-nav {
	position: fixed;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.nav-dot {
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transition: all 0.3s var(--cubicbz);
	box-shadow: 0 0 10px var(--glow-color);
}

.nav-dot:hover {
	background-color: var(--pr-color);
	transform: scale(1.3);
	box-shadow: 0 0 15px var(--glow-strong);
}

/* Target styling for active dots */
.timeline-item:target ~ .timeline-nav a[href*="job"] {
	background-color: rgba(255, 255, 255, 0.3);
	transform: scale(1);
	box-shadow: 0 0 10px var(--glow-color);
}

.timeline-item:target ~ .timeline-nav a[href$="#job1"]:nth-child(1),
.timeline-item:target ~ .timeline-nav a[href$="#job2"]:nth-child(2),
.timeline-item:target ~ .timeline-nav a[href$="#job3"]:nth-child(3),
.timeline-item:target ~ .timeline-nav a[href$="#job4"]:nth-child(4),
.timeline-item:target ~ .timeline-nav a[href$="#job5"]:nth-child(5) {
	background-color: var(--pr-color);
	transform: scale(1.3);
	box-shadow: 0 0 20px var(--glow-strong);
}

/* First item active by default */
#job1:not(:target) ~ .timeline-nav a[href$="#job1"] {
	background-color: var(--pr-color);
	transform: scale(1.3);
	box-shadow: 0 0 20px var(--glow-strong);
}

/* Additional glow effects for hover states */
.timeline-item:hover .timeline-dot {
	box-shadow: 0 0 25px var(--glow-strong);
}

/* Mobile responsive styles */
@media (max-width: 990px) {
	.timeline-line {
		left: 30px;
	}

	.timeline-dot {
		left: 30px;
		width: 60px;
		height: 60px;
	}

	.timeline-content {
		width: 75%;
		margin-left: 60px !important;
		margin-right: auto !important;
		padding: 30px;
	}

	.timeline-date {
		left: 100px !important;
		right: auto !important;
		text-align: left !important;
		top: calc(50% - 100px);
		width: 70%;
	}

	.job-title {
		font-size: 40px;
	}

	.company {
		font-size: 20px;
	}

	.timeline-nav {
		right: 10px;
	}
}

@media (max-width: 768px) {
	.timeline-content {
		width: 85%;
		padding: 25px;
	}

	.job-title {
		font-size: 32px;
	}

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

	.timeline-item {
		height: auto;
		min-height: 100vh;
	}
}

@media (max-width: 480px) {
	.timeline-content {
		width: calc(100% - 70px);
		padding: 20px;
	}

	.job-title {
		font-size: 28px;
	}

	.company {
		font-size: 18px;
		margin-bottom: 15px;
	}

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







.contact-wrapper {
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding-top: 150px;
	padding-bottom: 50px;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.contact-header {
	text-align: center;
}

.contact-header h1 {
	font-size: var(--fz-big);
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.contact-header p {
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
	opacity: 0.8;
}

.contact-content {
	display: flex;
	flex-direction: row;
	gap: 40px;
}

.contact-info {
	flex: 1;
}

.contact-form {
	flex: 2;
}

.info-item {
	margin-bottom: 30px;
}

.info-item h3 {
	font-size: 22px;
	margin-bottom: 10px;
	position: relative;
}

.info-item h3::before {
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	background: var(--pr-color);
	bottom: -5px;
	left: 0;
}

.info-item p {
	font-size: 16px;
	opacity: 0.8;
}

form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	display: flex;
	gap: 20px;
}

.form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

label {
	font-size: 16px;
	opacity: 0.8;
}

input, textarea {
	background: var(--card-bg);
	border: 1px solid var(--glow-color);
	color: var(--text-color);
	padding: 15px;
	font-size: 16px;
	transition: all 0.3s var(--cubicbz);
	border-radius: 2px;
}

input:focus, textarea:focus {
	outline: none;
	border-color: var(--glow-strong);
	box-shadow: 0 0 15px var(--glow-color);
}

textarea {
	min-height: 150px;
	resize: vertical;
}

button {
	background: var(--pr-color);
	color: var(--second-color);
	border: none;
	padding: 15px 30px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s var(--cubicbz);
	align-self: flex-start;
	border-radius: 2px;
	margin-top: 10px;
}

button:hover {
	background: var(--text-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px var(--glow-color);
}

@media (max-width: 768px) {
	.contact-content {
		flex-direction: column;
	}

	.form-row {
		flex-direction: column;
	}

	.contact-header h1 {
		font-size: 40px;
	}
}



.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.page-header {
	padding: 80px 0 40px;
	text-align: center;
}

.main-title {
	font-size: var(--fz-big);
	margin-bottom: 20px;
	letter-spacing: -1px;
	animation: fadeIn 1.2s var(--cubicbz) forwards;
}

.subtitle {
	font-size: 24px;
	opacity: 0.7;
	font-weight: 600;
	animation: fadeIn 1.4s var(--cubicbz) forwards;
}

.achievements {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin: 60px 0;
}

.achievement-card {
	background: var(--card-bg);
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 0 30px var(--glow-color);
	transition: transform 0.4s var(--cubicbz), box-shadow 0.4s var(--cubicbz);
	position: relative;
	overflow: hidden;
	z-index: 1;
	animation: cardReveal 0.8s var(--cubicbz) forwards;
	animation-delay: calc(var(--index) * 0.1s);
	opacity: 0;
}

.achievement-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 40px var(--glow-strong);
}

.achievement-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--glow-color) 0%, transparent 60%);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s var(--cubicbz);
}

.achievement-card:hover::after {
	opacity: 1;
}

.achievement-icon {
	font-size: 36px;
	margin-bottom: 20px;
}

.achievement-title {
	font-size: 28px;
	margin-bottom: 15px;
}

.achievement-desc {
	font-weight: 500;
	opacity: 0.8;
	margin-bottom: 20px;
	line-height: 1.5;
}

.achievement-date {
	font-size: 14px;
	opacity: 0.6;
	font-weight: 600;
}

.progress-bar {
	height: 6px;
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	overflow: hidden;
	margin: 15px 0;
}

.progress-fill {
	height: 100%;
	background: var(--pr-color);
	transition: width 1s var(--cubicbz);
}

.team-section {
	margin: 100px 0;
	text-align: center;
}

.section-title {
	font-size: 48px;
	margin-bottom: 60px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 4px;
	background: var(--pr-color);
}

.team-members {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.team-member {
	width: 200px;
	text-align: center;
	animation: fadeIn 0.8s var(--cubicbz) forwards;
	animation-delay: calc(var(--index) * 0.15s);
	opacity: 0;
}

.member-img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-bottom: 15px;
	border: 3px solid var(--pr-color);
	object-fit: cover;
	background-color: #333;
}

.member-name {
	font-size: 20px;
	margin-bottom: 5px;
}

.member-role {
	font-size: 16px;
	opacity: 0.7;
	font-weight: 600;
}

.stat-counters {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin: 80px 0;
}

.stat {
	text-align: center;
	min-width: 180px;
	margin: 20px;
	animation: fadeIn 1s var(--cubicbz) forwards;
	animation-delay: calc(var(--index) * 0.2s);
	opacity: 0;
}

.stat-number {
	font-size: 60px;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 18px;
	opacity: 0.7;
	font-weight: 600;
}

.highlight-box {
	background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
	border-radius: 16px;
	padding: 60px 40px;
	margin: 80px 0;
	box-shadow: 0 0 50px var(--glow-color);
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: fadeIn 1.6s var(--cubicbz) forwards;
}

.highlight-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--glow-strong) 0%, transparent 70%);
	opacity: 0.1;
	z-index: -1;
}

.highlight-title {
	font-size: 36px;
	margin-bottom: 20px;
}

.highlight-text {
	font-size: 20px;
	font-weight: 600;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.8;
	line-height: 1.6;
}

.page-        .page-footer {
	padding: 40px 0;
	text-align: center;
	opacity: 0.6;
	font-weight: 600;
	font-size: 14px;
}

/* Auto-scrolling image gallery */
.image-gallery-container {
	width: 100%;
	overflow: hidden;
	margin: 80px 0;
	position: relative;
}

.image-gallery-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100%;
	background: linear-gradient(to right, var(--second-color) 0%, transparent 100%);
	z-index: 2;
}

.image-gallery-container::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100%;
	background: linear-gradient(to left, var(--second-color) 0%, transparent 100%);
	z-index: 2;
}

.image-track {
	display: flex;
	width: calc(300px * 10);
	animation: scroll 60s linear infinite;
}

.gallery-image {
	width: 300px;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	margin: 0 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s var(--cubicbz);
}

.gallery-image:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 15px 30px var(--glow-strong);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-300px * 5));
	}
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
	.image-track {
		width: calc(200px * 10);
	}
	
	.gallery-image {
		width: 200px;
		height: 150px;
		margin: 0 10px;
	}
	
	@keyframes scroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-200px * 5));
		}
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cardReveal {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.main-title {
		font-size: calc(var(--fz-big) * 0.7);
	}
	
	.achievements {
		grid-template-columns: 1fr;
	}
	
	.stat-counters {
		flex-direction: column;
		align-items: center;
	}
	
	.highlight-box {
		padding: 40px 20px;
	}
}