/* =============== FONT FACES =============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

@font-face {
  font-family: "gilroy";
  src: url("./fonts/Gilroy-Medium.ttf");
}

@font-face {
  font-family: "silk";
  src: url("./fonts/Silk\ Serif\ Medium\ Italic.otf");
}

/* =============== GLOBAL RESETS =============== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  caret-color: transparent;
  /* outline: 1px solid red; */
}

*::-moz-selection {
  color: #00c098;
}

*::selection {
  color: #00c098;
}

html,
body {
  height: 100%;
  width: 100%;
  cursor: none;
  overflow-x: hidden;
  background-color: #000;
}

::-webkit-scrollbar {
  display: none;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

/* Hide scrollbars but keep functionality */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
#wrapper::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

/* =============== CUSTOM CURSOR =============== */
#holdCursor .cursor {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
  padding: 0.7vh;
  background-color: #fff;
  border-radius: 50%;
  mix-blend-mode: difference;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow: hidden;
}

.cursor.hovered {
  -webkit-transform: translate(-50%, -50%) scale(5);
  -ms-transform: translate(-50%, -50%) scale(5);
  transform: translate(-50%, -50%) scale(5);
}

/* Force no default cursor for links, etc. */
a,
a:hover,
a:focus,
.hover,
.hover:hover {
  cursor: none;
}

/* Responsive tweak for #holdCursor container */
@media (min-width: 900px) {
  #holdCursor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media (max-width: 900px) {
  nav {
    top: 30%;
  }
  .hover {
    width: 100%;
    padding: 20px 0;
    display: inline-block;
  }
}

/* =============== PRELOADER STYLES =============== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1000;
}

.scramble-text {
  font-size: 15vw;
  font-weight: 900;
  color: black;
  position: relative;
  z-index: 1001;
  caret-color: transparent;
}

.loading-bar-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  height: 5px;
  background: #ddd;
  z-index: 1100;
  overflow: hidden;
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: #000;
}

.loading-text {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 16px;
  color: black;
  z-index: 1100;
  -webkit-animation: blink 1s infinite;
  animation: blink 1s infinite;
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* =============== CHATBOT WIDGET =============== */
#chatbot-widget {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 99999;
}

/* Chatbot Icon with Enhanced Animation */
#chatbot-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

#chatbot-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(0, 192, 152, 0.4);
}

#chatbot-icon span {
  font-size: 36px;
  z-index: 3;
  color: white;
  transition: transform 0.3s ease;
}

#chatbot-icon:hover span {
  transform: scale(1.2);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 192, 152, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 192, 152, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 192, 152, 0);
  }
}

#chatbot-popup {
  position: absolute;
  display: none;
  visibility: hidden;
  pointer-events: none;
  bottom: 100px;
  right: 0;
  width: 400px;
  height: 600px;
  background: #1e1e1e;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#chatbot-popup.visible {
  transform: translateY(0);
  opacity: 1;
  display: flex;
  visibility: visible;
  pointer-events: auto;
}

#chatbot-popup:not(.visible) {
  pointer-events: none;
}

#chatbot-popup .chat-header {
  background: #151515;
  color: white;
  padding: 16px 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#chatbot-popup .chat-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#chatbot-popup .chat-header .close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 18px;
}

#chatbot-popup .chat-header .close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Messages Container */
#chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  font-size: 0.95rem;
  color: #eee;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: #00c098 #2a2a2a;
}

#chat-messages::-webkit-scrollbar {
  width: 6px;
}

#chat-messages::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 3px;
}

#chat-messages::-webkit-scrollbar-thumb {
  background: #00c098;
  border-radius: 3px;
}

/* Message Bubbles */
.message {
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.4;
  max-width: 80%;
  word-wrap: break-word;
  position: relative;
  animation: messageAppear 0.3s ease-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.user {
  background: linear-gradient(135deg, #00c098 0%, #008c6d 100%);
  color: white;
  align-self: flex-end;
  margin-left: auto;
  border-bottom-right-radius: 6px;
}

.message.bot {
  background: #2a2a2a;
  color: #eee;
  align-self: flex-start;
  margin-right: auto;
  border-bottom-left-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.message.typing {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #2a2a2a;
  color: #aaa;
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c098;
  animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* Input Area */
.chat-input {
  display: flex;
  border-top: 1px solid #333;
  background: #1e1e1e;
  padding: 15px;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #2a2a2a;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  caret-color: #00c098;
}

.chat-input input:focus {
  border-color: #00c098;
  box-shadow: 0 0 0 2px rgba(0, 192, 152, 0.2);
}

.chat-input button {
  background: linear-gradient(135deg, #00c098 0%, #008c6d 100%);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 192, 152, 0.3);
}

.chat-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 192, 152, 0.4);
}

.chat-input button:active {
  transform: translateY(0);
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  animation: pulse 2s infinite;
  z-index: 10;
  border: 2px solid #151515;
}

.status-indicator {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00c098;
  border: 2px solid #151515;
  z-index: 4;
  box-shadow: 0 0 5px rgba(0, 192, 152, 0.8);
}

.status-indicator.offline {
  background: #ff4757;
}

.status-indicator.typing {
  background: #ffa502;
  animation: pulse 1.5s infinite;
}

#chatbot-widget.minimized #chatbot-popup {
  display: none;
}

#chatbot-widget.hidden {
  opacity: 0;
  pointer-events: none;
}

/* =============== NAVIGATION =============== */
nav#fixed-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20000;
  padding: 1vw 2vw;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

nav#fixed-nav a.me {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

nav#fixed-nav a.me::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00c098;
  transition: width 0.3s ease;
}

nav#fixed-nav a.me:hover::before {
  width: 100%;
}

nav#fixed-nav #navlinks {
  display: flex;
  align-items: center;
  gap: 2vw;
}

nav#fixed-nav #navlinks a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
}

nav#fixed-nav #navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.1px;
  width: 0;
  background: currentColor;
  transition: width 0.3s ease;
  z-index: 1;
}

nav#fixed-nav #navlinks a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.1px;
  width: 0;
  background: currentColor;
  transition: width 0.3s ease 0.1s;
  z-index: 0;
}

nav#fixed-nav #navlinks a:hover::after,
nav#fixed-nav #navlinks a:hover::before {
  width: 100%;
}

/* =============== IMAGES =============== */
img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* =============== HERO SECTION =============== */

:root {
  --heading-size: clamp(6vw, 12vw, 12vw);
}

#hero {
  background-color: #000;
  height: 100vh;
  width: 100%;
  font-family: "PT Sans Narrow", sans-serif;
  color: #f2f2f2;
  overflow: hidden;
  padding: 5vw;
  font-weight: bolder;
}

.hero-main{
  position: relative;
  height: 80%;
  width: 100%;
  padding: 10vw 5vw 0;
}

.stacked-images {
  position: absolute;
  left: 37%;
  top: 13%;
  width: 400px;
  height: 600px;
  margin: 0 auto;
}

.stacked-images > div {
  position: absolute;
  top: -10%;
  left: 0;
  width: 75%;
  height: 65%;
  transition: transform 0.4s ease;
}

.stacked-images1 img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  z-index: 3;
}

.stacked-images2 img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  z-index: 2;
}

.stacked-images3 img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  z-index: 1;
}

.stacked-images1 img,
.stacked-images2 img,
.stacked-images3 img,
h1 .hero-name,
h1 .hero-surname,
h1 .hero-tom,
.hero-bottom-content,
.hero-bottom h4 {
  opacity: 0;
  transform: translateY(50px);
}

#hero .hero-main h1 {
  font-size: var(--heading-size);
  line-height: 0.8;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 10vw;
  letter-spacing: -10.5px;
}

.hero-name{
  display: inline-block;
  margin-left: 14vw;
}

.hero-surname{
  display: inline-block;
  margin-left: 24vw;
}

.hero-bottom{
  display: flex;
  padding-top: 6vw;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  position: relative;
  gap: 10px;
}

.hero-bottom-content {
  flex: 1;
  margin: 0 20px;

  span{
    color: #00c098;
  }
}

.marquee-container {
  width: 100px;
  overflow: hidden;
  border: 1px solid #000;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  transform: translateX(0);
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============== PAGE 2 =============== */
#page2{
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  border-top: 6px solid #fff;
}

#about-gallery {
  background: #000;
  color: #fff;
  padding: 6vw 4vw;
  font-family: "gilroy", sans-serif;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4vw;
  display: flex;
}

.gallery-header h4 {
  font-size: 1.2vw;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.gallery-header h4 span {
  color: #00c098;
  font-family: 'silk';
}

.gallery-header p {
  font-size: 1.2vw;
  line-height: 2vw;
  color: #ccc;
  max-width: 40%;
  margin: 1.5vw 1vw 0 auto;
  text-align: end;
}

.gallery-header span {
  color: #fff;
  font-weight: 900;
}

.gallery-grid {
  display: flex;
  gap: 2vw;
  justify-content: center;
}

.gallery-card {
  flex: 1;
  width: 20vw;
  height: 50vh;
  overflow: hidden;
  background: rgba(20,20,20,0.9);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1.2);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover::after {
  opacity: 1;
}

.page2-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.page2-card:nth-child(2) video {
  transform: scale(1.125);
}

.card-info {
  margin-top: 1rem;
  color: #fff;
  text-align: center;
}

.card-info h3 {
  font-size: 1.5vw;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-info p {
  font-size: 0.9vw;
  letter-spacing: 0.05em;
  color: #bbb;
}

.page2-horline {
  width: 90%;
  height: 2px;
  background: #333;
  margin: 4vw auto;
}

.page2-skills{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page2-skills h1{
  color: #fff;
  font-size: 8vw;
}

.page2-skills p {
  font-size: 1.5vw;
  width: 35%;
  font-weight: 100;
  margin: 1vw 4vw 0 0;
  text-align: right;
  line-height: 2vw;
  white-space: pre-wrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  align-items: center;
}

.page2-skills p.show {
  opacity: 1;
  transform: translateX(0);
}

/* JobSeek */

#jobseek{
  background-color: #EEF4FF;
  padding: 10vw 5vw;
  border-top: 10px solid #00b58c;
  font-family: 'gilroy', sans-serif;
}

.jobHead{
  text-align:center;
  margin-bottom:5vw;

  h4{
    font-size:clamp(1em, 1.5vw, 2em);
    margin-bottom: 1vh;
  }

  h1{
    font-size:clamp(2em, 4vw, 6em);
    font-weight:900;
    color:#151515;
    margin-bottom:1vw;

    span{
      color:#00c098;
      /* font-family: 'silk', sans-serif; */
    }
  }

  p{
    font-size:clamp(0.8em, 1.8vw, 2.2em);
    color:#666;
    line-height:1.4;
    max-width:800px;
    margin:auto;
  }
}

.jobGallery h1 {
	font-size:clamp(2em, 4vw, 6em);
  margin-bottom: 3vh;
}

.jobGallery h3{
  font-size:clamp(1.3em, 1.7vw, 2.5em);
  margin-bottom: 2vh;
  color:#00c09a96;
}

.jobGallery p {
	font-size:clamp(1.4em, 2.5vw, 3.5em);
	line-height:1.4;
  color:#302f2f;

}

.jobGallery {
  display:flex;	
}

.jobLeft {
	width:50%;
}

.jobRight {
	height:100vh;
	/* outline:1px solid purple; */
	width:50%;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.jobseekContent {
	margin:auto;
	width:80%;
}

.jobseekContentSection {
	min-height:100vh;
	/* outline:1px solid green; */
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.jobseekImages {
	width:40vw;
	height:25vw;
	border-radius:20px;
	position:relative;
	overflow:hidden;
	box-shadow:4px 4px 4px rgba(0, 0, 0, 0.4);
}

.jobseekImage {
	position:absolute;
	width:100%;
	height:100%;

  video{
  object-fit: cover;
  width: 100%;
  height: 100%;
  }
}

@media screen and (max-width: 599px) {
	.jobLeft {
		display:none;
	}
	
	.jobRight {
		height:auto;
		width:100%;
		align-items:center;	
	}	
	
	.jobseekImages {
		display:none;
	}
}

/* Page3 starts */
#page3 {
  z-index: 0;
  min-height: 100vh;
  width: 100%;
  background-color: #151515;
  padding: 10vw 5vw;

}

#page3::before {
  content: "";
  position: fixed;
  top: -5vw;
  left: -5vw;
  width: calc(100vw + 100vw);
  height: calc(100vh + 100vw);
  background-color: #151515;
  z-index: -1;
}

#page3 h2 {
  color: #f2f2f2;
  font-size: 10vw;
  font-family: "gilroy";
  display: inline-block;
}

#page3 h2 span {
  display: inline-block;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}

#page3 .servi {
  color: #e0d5d5;
  opacity: 0.7;
  font-size: 1.5vw;
  font-family: "gilroy";
  margin-top: 2vw;
  width: 60%;
  text-align: end;
  position: relative;
  left: 40%;
  padding-bottom: 5vw;
}

/* Project section */

#page3 .services {
  width: 100%;
  padding: 3rem 0rem;
  position: relative;
}

/* stroke */

#page3 .services .one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 2vw;
  position: relative;
  z-index: 1;
  background-color: transparent;
}

#page3 .services .one.pinned {
  z-index: 2;
}

#page3 .services .border1 {
  border-top: 1px solid #ccccc3;
}

#page3 .services .one .onefirst {
  width: 50%;
  position: relative;
  left: 40%;
}

#page3 .services .one .onefirst h2 {
  color: #ccccc3;
  font-size: 4vw;
  font-family: "gilroy";
}

#page3 .services .one .onelast {
  width: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#page3 .services .one .onelast h3 i {
  position: relative;
  left: 4%;
}

#page3 .services .one .onelast h3 {
  font-size: 3vw;
  font-family: "gilroy";
  color: #ccccc3;
}

#page3 .services .one .onelast .award {
  margin-top: 0.5vw;
  position: relative;
  color: #00c098;
  font-family: "silk";
}

#page3 .services .one .onelast p {
  color: #e0d5d5;
  opacity: 0.7;
  padding-top: 1vh;
  padding-bottom: 2vh;
  font-size: 1.1vw;
  width: 100%;
  font-family: "gilroy";
}

#page3 .services .one .onelast .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #ccccc3;
  padding-top: 1.5vh;
  padding-bottom: 3.5vh;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 40%;
  font-family: "gilroy";
  gap: 1.3vw;
}

#page3 .services .one .onelast .list .listitem {
  font-size: 1.3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 2vh;
  opacity: 0.9;
  gap: 1.2vw;
}

#page3 .services .one .onelast .list .listitem span {
  font-family: "gilroy";
  font-size: 1.7vw;
}

#page3 .services .one .onelast .list .listitem .messed {
  font-family: "gilroy";
  font-size: 1.3vw;
}

/* link to stroke */
#page3 .services .one .onelast .list .listitem .linkto {
  z-index: 1;
  display: inline-block;
  background-color: #ccccc3;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease,
    -webkit-transform 0.2s ease;
  margin-left: 0.2vw;
}

#page3 .services .one .onelast .list .listitem .linkto a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  background-color: #ccccc3;
  border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease,
    -webkit-transform 0.2s ease;
  text-decoration: none;
  color: #000;
  font-size: 1.3vw;
}

#page3 .services .one .onelast .list .listitem .linkto a:hover {
  background-color: #ddd;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#page3 .services .one .onelast .list .listitem .linkto a i {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

#page3 .services .one .onelast .list .listitem .linkto a:hover i {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

#page3 .services .one .onelast .onetwopara {
  margin-top: 3vh;
  margin-bottom: 1.5vh;
}

#page3 .services .one .onelast .list .comingsoon span {
  font-size: 1.5vh;
  color: #00c098;
}

#page3 .services .one .onelast .list .comingsoon .messedup {
  font-size: 2.3vh;
  color: #ccccc3;
}

#page3 .services .onethree .onelast .list .listitem {
  display: block;
}

/* refokus */
#page3 .services .one .onelast .list .listitem .linktoweb {
  z-index: 1;
  display: inline-block;
  background-color: #ccccc3;
  border-radius: 50%;
  margin-left: 0.2vw;
}

#page3 .services .one .onelast .list .listitem .linktoweb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  background-color: #ccccc3;
  border-radius: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease,
    -webkit-transform 0.2s ease;
  text-decoration: none;
  color: #000;
  font-size: 1.3vw;
}

#page3 .services .one .onelast .list .listitem .linktoweb a:hover {
  background-color: #ddd;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#page3 .services .one .onelast .list .listitem .linktoweb a i {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

#page3 .services .one .onelast .list .listitem .linktoweb a:hover i {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

/* Page 4 */
#page4 {
  width: 100%;
  min-height: 100vh;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  font-family: gilroy;
  overflow: hidden;
  position: relative;
  margin-top: -20vh;
  border-bottom: 8px solid #00b58c;
}

.page4-left,
.page4-right {
  width: 30%;
  height: 100vh;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page4-center {
  width: 40%;
  height: 120vh;
  background-color: #f2f2f2;
  color: #151515;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;

  h1 {
    font-size: 11.5vw;
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 200;
    line-height: 19vh;
    text-align: center;
    font-style: italic;
  }
}

.page4-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #151515;
  color: #151515;
  padding: 0.5vw 1.2vw;
  border-radius: 50px;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.page4-tc {
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-top: 4px solid #151515;
}

.page4-bc {
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
}

.page4-c-1 {
  width: 100%;
  height: 0vh;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1.4s;
}

.page4-c-2 {
  width: 100%;
  height: 0vh;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1.4s;
}

.page4-img {
  position: absolute;
  pointer-events: none;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1.5s;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.page4-img-b1 {
  width: 25vw;
  height: 25vh;
  bottom: 56%;
  right: 50%;
  filter: blur(10px);
  opacity: 0;
}

.page4-img-b2 {
  width: 15vw;
  height: 17vh;
  top: 55%;
  left: 50%;
  filter: blur(10px);
  opacity: 0;
}

.page4-img-b3 {
  width: 10vw;
  height: 12vh;
  bottom: 40%;
  right: 57%;
  filter: blur(10px);
  opacity: 0;
}

.page4-img-b4 {
  width: 7vw;
  height: 7vh;
  top: 38%;
  left: 55%;
  filter: blur(10px);
  opacity: 0;
}

.page4-img-1 {
  background-image: url("https://i.pinimg.com/736x/5b/39/fa/5b39fac2f14d0c93d12a32a1222e862f.jpg");
}

.page4-img-2 {
  background-image: url("https://i.pinimg.com/736x/48/09/5a/48095ae5ba4389fef615b6237e0088b2.jpg");
}

.page4-img-3 {
  background-image: url("https://i.pinimg.com/736x/83/57/63/835763e53c28e0e155a31c26e0f2abb2.jpg");
}

.page4-img-4 {
  background-image: url("https://i.pinimg.com/736x/8e/f0/b5/8ef0b5821e175a2c25383214dec3ead9.jpg");
}

.page4-img-5 {
  background-image: url("https://i.pinimg.com/736x/db/31/ea/db31ea07d077fe1e4f80894ff6b936db.jpg");
}

.page4-img-6 {
  background-image: url("https://i.pinimg.com/736x/4d/91/29/4d91295543a47a013e9e6fccbf27d73d.jpg");
}

.page4-img-7 {
  background-image: url("https://i.pinimg.com/736x/ff/9a/82/ff9a8219e83c04af94f9929aaf9cefb9.jpg");
}

.page4-img-8 {
  background-image: url("https://i.pinimg.com/736x/28/05/a0/2805a091f1e95bf4296a6fa9db31d801.jpg");
}

/* sidebar */
#overlay-blur {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  z-index: 998;
  display: none;
  transition: opacity 0.3s ease;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 400px;
  background-color: #f2f2f2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  overflow-y: auto;
  transition: transform 0.5s ease;
  padding: 2rem;
  transform: translateX(-100%);
  display: none;
}

.sidebar.left {
  left: 0;
}

.sidebar.right {
  right: 0;
  left: auto;
  transform: translateX(100%);
}

.sidebar.show {
  display: block;
}

.sidebar.show.left {
  transform: translateX(0%);
}
.sidebar.show.right {
  transform: translateX(0%);
}

body.noscroll {
  overflow: hidden;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h2 {
  margin: 7vh 0 4vh;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.5px;
  padding-bottom: 0.7vh;
}

.sidebar-content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-tile {
  background: #f2f2f2;
  margin-bottom: 1vh;
  padding: 1.5rem;
  border-bottom: 2px solid #00c098;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-tile:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary);
}

.project-tile h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #000;
}

.project-tile p {
  font-size: 0.9rem;
  color: #151515;
  margin-bottom: 1rem;
}

.tile-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid #000;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  transition: background 0.3s ease;
  cursor: pointer !important;
}

.tile-link:hover {
  background: var(--primary);
  color: #111;
}

/* Footer */
footer {
  padding: 5vh 0;
  min-height: 100vh;
  color: #f2f2f2;
  font-family: "gilroy", sans-serif;
  position: relative;
  overflow: hidden;
  background-color: #151515;
}

.footer-container {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

/* Upper Footer (Heading) */
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

.footer-left {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.footer-left h2 {
  font-size: 9vw;
  color: #f2f2f2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4vh;
  line-height: 18vh;
}

.footer-left .footer-next {
  display: inline-block;
  color: #00c098;
  font-weight: 900;
  position: relative;
  width: 23vw;
}

.footer-left .footer-your {
  color: #00c098;
}

.footer-left p {
  font-size: 1.5vw;
  color: #333333;
  line-height: 1.4;
}

/* Lower Footer: Two-Column Layout */
.footer-bottom {
  display: flex;
  gap: 0.5rem;
  padding: 0 5rem 2rem;
}

.panel {
  flex: 1;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
  height: 45vh;
  background: #212121;
  transition: all 0.3s ease;
}

.panel__nav {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.75;
}
.panel__sub {
  font-weight: 300;
}
.panel__arrow {
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.panel__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}

.panel--dark .panel__copy {
  font-size: 1rem;
  opacity: 0.6;
  margin-top: auto;
}

.panel__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid white;
  border-radius: 999px;
  width: 40%;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  margin-top: auto;
  transition: background 0.2s, color 0.2s;
}
.panel__button:hover {
  background: white;
  color: #151515;
}

.panel:hover {
  padding: 2.3rem;
}

.panel--dark {
  flex: 0 0 35%;
}

.panel--purple {
  position: relative;
}

.panel--purple:hover {
  background: #8a1fff;
}

/* footer-nav */
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4vw;
  padding: 0 8rem 2rem;
}

.footer-nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.footer-right-bottom {
  margin-top: -9vh;
  width: 100%;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: flex-end;
  z-index: 1000;
  animation: fadeInBg 0.3s ease;
}
.modal-overlay.active {
  display: flex;
}

@keyframes fadeInBg {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.5);
  }
}

.modal-card {
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  transform: translateY(100px);
  animation: slideUp 0.4s forwards;
  position: relative;
}
@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}
.modal-close:hover {
  color: #000;
}

#contact-form {
  margin-top: 2vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}
#contact-form input,
#contact-form textarea {
  flex: 1 1 45%;
  min-width: 150px;
  background: #f2f2f2;
  border: 1.4px solid #000;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
  caret-color: #000;
}
#contact-form textarea {
  height: 100px;
}
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #00c098;
  box-shadow: 0 0 10px rgba(0, 192, 152, 0.3);
}

#contact-form button {
  background: #151515;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
#contact-form button:hover {
  background: #151515e9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Toast container */
#toast {
  visibility: hidden;
  min-width: 250px;
  background-color: teal;
  color: #fff;
  text-align: left;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  right: -3vw;
  bottom: 15vh;
  font-family: sans-serif;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.toast-icon {
  margin-right: 8px;
  font-size: 20px;
}

@-webkit-keyframes slideIn {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 30px;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes slideOut {
  from {
    right: 30px;
    opacity: 1;
  }
  to {
    right: -300px;
    opacity: 0;
  }
}

@keyframes slideOut {
  from {
    right: 30px;
    opacity: 1;
  }
  to {
    right: -300px;
    opacity: 0;
  }
}

#toast.show {
  visibility: visible;
  -webkit-animation: slideIn 0.5s forwards;
  animation: slideIn 0.5s forwards;
}

#toast.hide {
  -webkit-animation: slideOut 0.5s forwards;
  animation: slideOut 0.5s forwards;
}

