@charset "UTF-8";
/* CSS Document */
*,
*::before,
*::after 
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}


body {	
	background-color: #b3c9e8;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
    align-items: center;
	padding-top: 58px;
}

/************     MAIN NAVIGATION STYLES START   ***********/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
	margin: 0px;
}

.logogroup {
	width: 350px; /* Adjust size */
	height: auto;
	display: block; /* Enables grid layout */
  	justify-items: end;
}

.nav-container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}
/* 1. Base styles for all links */
.nav-container ul li a {
	color: #142035; /* Initial color for all links (the "hovered" color) */
	transition: color 0.3s ease; /* Smooth transition for color changes */
}

/* 2. When the parent container is hovered, change the color of all child links */
.nav-container ul:hover li a {
	color: lightgray; /* Color for the "non-hovered" links */
}

/* 3. When an individual link (or its parent li) is hovered, revert its color back to the initial color */
.nav-container ul li a:hover {
	color: #142035; /* Color for the hovered link (stays the same as initial) */
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-item {
	margin-left: 30px;
	position: relative;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 16px;
	padding: 10px 0;
	display: inline-block;
	position: relative;
	transition: color 0.3s ease;		
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(to right, #000, #999);
	transition: width 0.3s ease;
	border-radius: 3px;
}

.nav-link:hover {
	color: #FF5F6D;
}

.nav-link:hover::before {
	width: 100%;
}

.menu-toggle {
	display: none;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #142035;
	margin: 5px 0;
	transition: all 0.3s ease;
	border-radius: 3px;
}

 /* Dropdown Styles */
.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	width: 200px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 100;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(10px);
}

.dropdown-item {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
}

.dropdown-item:hover {
	background-color: #f5f5f5;
	color: #FF5F6D;
	padding-left: 25px;
}

/* Navigation Indicator */
.nav-indicator {
	position: absolute;
	bottom: -2px;
	height: 2px;
	border-radius: 3px;
	background: transparent;
	transition: all 0.3s ease;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
.menu-toggle {
	display: block;
}

.nav-menu {
	position: fixed;
	left: -100%;
	top: 70px;
	flex-direction: column;
	background-color: #fff;
	width: 100%;
	text-align: center;
	transition: 0.3s;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	padding: 20px 0;
	height: calc(100vh - 70px);
	overflow-y: auto;
}

.nav-menu.active {
	left: 0;
}

.nav-item {
	margin: 15px 0;
}

.dropdown-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	/*transform: none;*/
	box-shadow: none;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	transition: max-height 0.3s ease;
}

.dropdown.open .dropdown-menu {
	max-height: 300px;
	padding: 10px 0;
}

.nav-indicator {
	display: none;
/* Responsive Styles */
}
}
/************   MAIN NAVIGATION STYLES END   ***********/

.hero {
	position: relative;
	height: 780px;
	overflow: hidden;
	box-sizing: border-box;
	min-width:100vw;
	display:flex;
	align-items:center;
	padding:80px 10%;
	background-color: #142035;
}

#particles-js {
	position: absolute;
	inset: 0;          /* top:0 right:0 bottom:0 left:0 */
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	color: white;
	text-align: left;
	padding-top: 100px;
}

/***********  HERO SECTION BEGIN  ***********/

 :root {
 /* Demonstration image from Unsplash by Paul Gilmore. For best results, replace this URL with your own high-quality background image.*/
	 --fsi-bg-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=1400');
	 --fsi-min-height: 100vh;
	 --fsi-padding: 2rem 1.5rem;
	 --fsi-text-color: #ffffff;
	 --fsi-overlay-color: rgba(0, 0, 0, 0.4);
	 --fsi-cta-border-color: #ffffff;
	 --fsi-cta-border-color-2: #142035;
}

/* TEXT */

.hero-intro {
	font-size:22px;
	font-weight: 600;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	color:var(--fsi-text-color);
	margin-bottom:10px;
}

.hero-name {
	color: var(--fsi-text-color);
	font-size: 65px;
	font-weight:800;
	line-height:1.1;
	margin-bottom:10px;
}

.hero-name span{
	color:#b3c9e8;
	font-weight:600;
}

.hero-role{
	font-size:22px;
	font-weight:500;
	margin-bottom:20px;
	color:var(--fsi-text-color);
}

.hero-desc{
	font-size:16px;
	color:#b3c9e8;
	max-width:420px;
	margin-bottom:20px;
	line-height:1.6;
}

.fsi-hero-cta {
	display: inline-block;
	background: transparent;
	color: var(--fsi-text-color);
	border: 2px solid var(--fsi-cta-border-color);
	padding: 0.8rem 2.2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-transform: uppercase;
}
.fsi-hero-cta:hover {
	background-color: var(--fsi-cta-border-color);
	color: #000000;
}

.fsi-hero-cta-2 {
	display: inline-block;
	background: transparent;
	color: var(--fsi-text-color);
	border: 2px solid var(--fsi-cta-border-color-2);
	padding: 0.8rem 2.2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-transform: uppercase;
}
.fsi-hero-cta-2:hover {
	background-color: var(--fsi-cta-border-color-2);
	color: var(--fsi-text-color);
}

/* IMAGE */

/* RESPONSIVE */
@media (max-width:900px){
.hero-name{
	font-size: clamp(3rem, 8vw, 5.5rem);
}
.hero-desc{
	margin:auto;
	margin-bottom:20px;
}}

/***********  HERO SECTION END  ***********/


/***********  MAIN CONTENT SECTION START  ***********/



/* ABOUT SECTION BACKGROUND */

.about {
  position: relative;
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;
  justify-content: flex-start; /* push to top */
	background:#fff;
	padding: 100px 0px 50px;
}

.about h2 {
	color: #142035;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 47px;
    font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 18px;
}


figure {
  position: static;
  width: 100%;
  max-width: 800px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.6);
 
}

h1 {
  font-size: 40px;
  line-height: 1.5cap;
  text-wrap: balance;
  color: white;
  margin-bottom: 20px;
}

figcaption {
  font-size: 18px;
  font-weight: 400;
  line-height: 2cap;
  text-wrap: pretty;
  padding-left: 30px;
  border-left: 1px solid white;
  color: #bbb;
}

@media (max-width: 780px) {
  figure {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 32px;
  }
  figcaption {
    font-size: 16px;
  }
}




.triangle-divider {
  width: 100%;
  height: 8vw;
  max-height: 120px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-top: -1px; /* 👈 removes the line */
}

.triangle-divider-up {
  width: 100%;
  height: 8vw;
  max-height: 120px;
  background: white; /* match the TOP section color */
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  margin-bottom: -1px; /* removes anti-alias line */
}


/* SERVICES SECTION BACKGROUND */
.services-section {
	min-width:100vw;
    background: #b3c9e8;
    padding: 100px 20px 160px;
    text-align: center;
    position: relative;
}

.services-section h2 {
    color: white;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 90px;
    font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 18px;
}

  /* CARDS CONTAINER */
.cards {
	max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -120px;
    width: 100%;
    padding: 0 20px;
}

  /* CARD */
.card {
    background: #f3f3f3;
    padding: 40px 25px;
    text-align: center;
    border-top: 5px solid #142035;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
	transform: translateY(-8px);
}

  /* ICON */
  .icon {
    margin-bottom: 20px;
  }

.icon img {
  width: 50px;   /* control size */
  height: 50px;
  object-fit: contain;
}

  /* TITLE */
  .card h3 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
  }

  /* TEXT */
  .card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* LINK */
  .card a {
    text-decoration: none;
    color: #142035;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: bold;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .cards {
      grid-template-columns: repeat(2, 1fr);
      position: static;
      transform: none;
      margin-top: 40px;
    }

    .services-section {
      padding-bottom: 60px;
    }
  }

  @media (max-width: 600px) {
    .cards {
      grid-template-columns: 1fr;
    }
  }

.next-section {
  padding: 200px 20px 60px; /* extra top space */
  background: white;
  text-align: center;
}

/***********  PROJECTS  ***********/

.showcase-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-header p {
  color: #777;
  margin-bottom: 40px;
}

/* GRID */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEMS */
.showcase-item {
  position: relative;
  overflow: hidden;
}

.showcase-item img {
  width: auto;
	height: 300px;
  display: block;
  transition: transform 0.4s ease;
	object-fit: cover;
}

/* HOVER EFFECT */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.showcase-item:hover .overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

/***********  MAIN CONTENT SECTION END  ***********/






/* Typewriter effect 1 */
@keyframes typing {
  0.0000%, 27.3488% { content: ""; }
  1.1395%, 26.2093% { content: "d"; }
  2.2791%, 25.0698% { content: "de"; }
  3.4186%, 23.9302% { content: "dev"; }
  4.5581%, 22.7907% { content: "deve"; }
  5.6977%, 21.6512% { content: "devel"; }
  6.8372%, 20.5116% { content: "develo"; }
  7.9767%, 19.3721% { content: "develop"; }
  9.1163%, 18.2326% { content: "develope"; }
  10.2558%, 17.0930% { content: "developer"; }

  30.7674%, 51.2791% { content: ""; }
  31.9070%, 50.1395% { content: "d"; }
  33.0465%, 49.0000% { content: "de"; }
  34.1860%, 47.8605% { content: "des"; }
  35.3256%, 46.7209% { content: "desi"; }
  36.4651%, 45.5814% { content: "desig"; }
  37.6047%, 44.4419% { content: "design"; }
  38.7447%, 43.3019% { content: "designe"; }
  39.8847%, 42.1619% { content: "designer"; }

  54.6977%, 75.2093% { content: ""; }
  55.8372%, 74.0698% { content: "p"; }
  56.9767%, 72.9302% { content: "pr"; }
  58.1163%, 71.7907% { content: "pri"; }
  59.2558%, 70.6512% { content: "prin"; }
  60.3953%, 69.5116% { content: "print"; }
  61.5349%, 68.3721% { content: "printm"; }
  62.6749%, 68.3721% { content: "printma"; }
  63.7049%, 68.3721% { content: "printmak"; }
  64.8449%, 68.3721% { content: "printmake"; }
  65.9849%, 68.3721% { content: "printmaker"; }

  78.6279%, 96.8605% { content: ""; }
  79.7674%, 95.7209% { content: "h"; }
  80.9070%, 94.5814% { content: "hu"; }
  82.0465%, 93.4419% { content: "hum"; }
  83.1860%, 92.3023% { content: "huma"; }
  84.3256%, 91.1628% { content: "human"; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typewriter {
  --caret: currentcolor;
}

.typewriter::before {
  content: "";
  animation: typing 13.5s infinite;
}

.typewriter::after {
  content: "";
  border-right: 1px solid var(--caret);
  animation: blink 0.5s linear infinite;
}

.typewriter.thick::after {
  border-right: 1ch solid var(--caret);
}

.typewriter.nocaret::after {
  border-right: 0;
}


@media (prefers-reduced-motion) {
  .typewriter::after {
    animation: none;
  }
  
  @keyframes sequencePopup {
    0%, 100% { content: "developer"; }
    25% { content: "writer"; }
    50% { content: "reader"; }
    75% { content: "human"; }
  }

  .typewriter::before {
    content: "developer";
    animation: sequencePopup 12s linear infinite;
  }
}








