@import url("https://fonts.googleapis.com/css?family=Merriweather:300,700,300italic,700italic|Source+Sans+Pro:900");

html, body{
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
	scroll-behavior: smooth;
	box-sizing: border-box;
	font-size: 16pt;
}


*, *:before, *:after {
	box-sizing: inherit;
}

@media screen and (max-width: 1680px) {

	html {
		font-size: 12pt;
	}

}

@media screen and (max-width: 1280px) {

	html {
		font-size: 11pt;
	}

}

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

	html {
		font-size: 10pt;
	}

}


body, input,textarea {
	font-family: "Merriweather", Georgia, serif;
	font-weight: 300;
	line-height: 2.375;
}


strong, b {
		font-weight: 600;
	}

p {
	text-align: justify;
	margin: 0 0 2rem 0;
}



h1, h2, h3{
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	margin: 0 0 1rem 0;
}


h1 {
	font-size: 4rem;
	line-height: 1.1;
	margin: 0 0 2rem 0;
}

h2 {
	font-size: 1.75rem;
	line-height: 1.3;
	margin: 0 0 1.5rem 0;
}

h3 {
	font-size: 1.25rem;
	margin: 0 0 1.5rem 0;
}

	
/* Button */

input[type="submit"],
input[type="button"],
button,
.button {
	appearance: none;
	transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	height: 3rem;
	line-height: 3rem;
	padding: 0 2rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	background-color: transparent;
	box-shadow: inset 0 0 0 2px #212931;
	color: #212931;
}

.button.icon.solo {
		position: relative;
		width: 4rem;
		height: 4rem;
		line-height: 4rem;
		border-radius: 4rem;
		text-indent: 4rem;
		overflow: hidden;
		padding: 0;
		white-space: nowrap;
	}

.button.icon.solo:before {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: inherit;
	height: inherit;
	line-height: inherit;
	font-size: 1.25rem;
	margin-right: 0;
	text-align: center;
	text-indent: 0;
}


@media screen and (max-width: 980px) {

	input[type="submit"],
	input[type="button"],
	button,
	.button {
		font-size: 0.9rem;
		height: 3.25rem;
		line-height: 3.25rem;
	}


}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	box-shadow: inset 0 0 0 2px #18bfef;
	color: #18bfef !important;
}


/* Form */

form {
	margin: 0 0 2rem 0;
}

form > :last-child {
	margin-bottom: 0;
}

form > .fields {
display: flex;			
flex-wrap: wrap;
width: calc(100% + 3rem);
margin: -1.5rem 0 2rem -1.5rem;
} 

form > .fields > .field {
	flex-grow: 0;
	flex-shrink: 0;
	padding: 1.5rem 0 0 1.5rem;
	width: calc(100% - 1.5rem);
}				

label {
	display: block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.075em;
	font-size: 0.8rem;
	text-transform: uppercase;
	margin: 0 0 0.75rem 0;
	color: #212931;

}

@media screen and (max-width: 980px) {

	label {
		font-size: 0.9rem;
	}

}

input[type="text"],
input[type="email"],
textarea {
	appearance: none;
	background: transparent;
	border-radius: 0;
	border: solid 2px;
	color: inherit;
	display: block;
	outline: 0;
	padding: 0 1rem;
	text-decoration: none;
	width: 100%;
}

input[type="text"],
input[type="email"]
	{
	height: 3rem;
}

textarea {
	padding: 0.75rem 1rem;
}



input[type="text"],
input[type="email"],
textarea {
	border-color: #eeeeee;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	border-color: #18bfef;
}


/* Icon */

.icon {
text-decoration: none;
border-bottom: none;
position: relative;
}

.icon:before {			
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}

.icon > .label {
	display: none;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}



/* Actions */

ul.actions {
	cursor: default;
	list-style: none;
}

		

/* footer Icons */

ul.icons li {
	display: inline-block;
	padding: 0 0.5rem 0 0;
	vertical-align: middle;	
    }

			
ul.icons li .icon:before {
	width: 2.25rem;
	height: 2.25rem;
	line-height: 2.25rem;
	display: inline-block;
	text-align: center;
	border-radius: 100%;
	font-size: 1.25rem;
}

ul.icons.alt li .icon:before {			
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	font-size: 1rem;
}



/* About Section */


header > .date {
	display: block;
	font-size: 0.8rem;
	height: 1;
	margin: 0 0 1rem 0;
	position: relative;
}

header > p {
	font-style: italic;
}


header.major {
	margin: 0 0 4rem 0;
	text-align: center;
}

	

header.major > p {
	margin-top: 0;
	text-align: center;
}


header.major > .date:before, header.major > .date:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: calc(50% - 6rem);
	border-top: solid 2px;
}

header.major > .date:before {
	left: 0;
}

header.major > .date:after {
	right: 0;
}

	
header.major .date:before, header.major .date:after {
	border-top-color: #e7e2e2;
}

.about-container {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 5rem;
}

.about-text {
flex: 1;
min-width: 280px;
}

.about-image {
flex: 1;
min-width: 250px;
text-align: center;
}

.about-image img {
border-radius: 10px;
width: 100%;
max-width:800px;
max-height: 650px;
height: auto;
object-fit: cover;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer Pagination */

.pagination {
	display: inline-flex;
	user-select: none;
	cursor: default;
	list-style: none;
	margin: 0 0 2rem 2px;
	padding: 0;
}

.pagination a, .pagination span {
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
	border: solid 2px;
	display: inline-block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.8rem;
	font-weight: 900;
	height: 3rem;
	letter-spacing: 0.075em;
	line-height: calc(3rem - 4px);
	margin-left: -2px;
	min-width: 3rem;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.pagination .next, .pagination .previous {
	padding: 0 1.75rem;
}

.pagination .next:before, .pagination .previous:before {								
	font-family: 'Font Awesome 5 Free';
}


.pagination .previous:before {
	content: '\f104';
	margin-right: 0.9375em;
}

.pagination .next:before {
	content: '\f105';
	float: right;
	margin-left: 0.9375em;
}

@media screen and (max-width: 980px) {

	.pagination a, .pagination span {
		font-size: 0.9rem;
	}

}

.pagination a, .pagination span {
	border-color: #eeeeee;
}

.pagination a {
	color: #212931;
}

.pagination a:hover {
	color: #18bfef;
	border-color: #18bfef;
	z-index: 1;
}

.pagination a:hover + a,
.pagination a:hover + span {
	border-left-color: #18bfef;
}

.pagination span {
	color: #eeeeee;
}

/* Wrapper */

#wrapper {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)),url("images/bg.jpg");		
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}


/*sub-heading of heading*/
.typed-css {
	line-height: 96%;
	color:white;
	font-family: monospace;
	overflow: hidden;
	border-right: 2px solid;
	white-space: nowrap;
	width: 0;
	animation: typing 3s steps(34, end) forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
from { width: 0 }
to { width: 34ch }
}

@keyframes blink {
50% { border-color: transparent }
}

/* Intro */

#intro {
  color: #ffffff;
  padding: 8rem 4rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: opacity 1s ease, transform 1s ease;
  position: relative;
  cursor: default;
  text-align: center;
  z-index: 1;
  min-height: 100vh;
  }


#intro a {
		color: #ffffff;
		border-bottom-color: rgba(255, 255, 255, 0.5);
		font-weight: 600;
		}

#intro a:hover {
	border-bottom-color: transparent;
	color: #18bfef;
}

#intro h1 {
	color: #ffffff;
	font-size: 5rem;
	line-height: 1;
}
		
#intro p {
	font-size: 1.25rem;
	font-style: italic;
	margin-top: -0.25rem;
	text-align: center;
}

#intro .button {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px #ffffff;
	color: #ffffff !important;
}

			
#intro .button:hover {
	box-shadow: inset 0 0 0 2px #18bfef;
	color: #18bfef !important;
}

@media screen and (max-width: 980px) {

	#intro {
		padding: 4rem 4rem 2rem 4rem ;
		min-height: 90vh;
	}				

}

@media screen and (max-width: 736px) {

	#intro {
		padding: 3rem 2rem 1rem 2rem ;
		min-height: 80vh;
	}

		#intro h1 {
			font-size: 3.25rem;
			line-height: 1.1;
			margin-bottom: 1rem;
		}

		#intro p {
			font-size: 1rem;
			margin-top: 0rem;
		}


}

/* nav */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  background-color: black;
  padding:0px 10px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Flex wrapper for all nav sections */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1850px;
  margin: 0 ;
  width: 100%;
}

.nav-logo{
	padding-top: 20px;
	font-size: 30px;
}


/* Links */
.links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
}

.links ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding-top: 2px;
  margin: 0;
}

.links ul a{
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border-bottom: dotted 1px;
  text-decoration: none;
}

/* Icons */
.icons ul{
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-top: 20px;
  margin: 0;
  position: right;

}

#nav .icons a {
  font-size: 1.2em;
  transition: color 0.3s ease;
}

/* Main */

#main {
	background-color: #ffffff;
	position: relative;
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 72rem;
	z-index: -99;
	padding-top: 80px;
}

#main > * {
	padding: 4rem 4rem 2rem 4rem ;
	border-top: solid 2px #eeeeee;
	margin: 0;
}

#main > *:first-child {
	border-top: 0;
}

#main > footer {
	text-align: center;
}


/* skills section */
#skills {
max-width: 1500px;
margin: auto;
padding: 2rem;
}

.skill {
margin-bottom: 20px;
}
.skill-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 5px;
font-weight: bold;
}	

.skill span {
display: block;
font-weight: bold;
margin-bottom: 5px;
}

.bar {
background-color: #eee;
height: 20px;
border-radius: 0;
overflow: hidden;
}

.fill {
height: 100%;
background: #1bb1ec;
border-radius: 0px;
transition: width 1s ease-in-out;
}

/* education section*/
.timeline {
  position: relative;
  margin-left: 0;
  padding-left: 30px;
  border-left: 2px solid #00aaff;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}


.timeline-item {
position: relative;
margin-bottom: 30px;
padding-left: 20px;

}

.timeline-item .dot {
position: absolute;
left: -58px;
top: 5px;
width: 15px;
height: 15px;
background-color: #00aaff;
border-radius: 50%;
border: 2px solid #fff;
box-shadow: 0 0 0 2px #00aaff;
}

.timeline-item .dot1 {
position: absolute;
left: -27px;
top: 5px;
width: 15px;
height: 15px;
background-color: #00aaff;
border-radius: 50%;
border: 2px solid #fff;
box-shadow: 0 0 0 2px #00aaff;
}


.timeline-item .content h3 {
margin: 0;
font-size: 16px;
color: #333;
}

.timeline-item .content p {
margin: 5px 0 0;
color: #555;
font-size: 14px;
word-break: break-word;
white-space: normal;
}


.timeline-item01{
	flex: 1;
	flex-basis: 300px;   
	padding: 20px;
	min-width: 250px;     
	max-width: 100%;     
	box-sizing: border-box;
}

.timeline-item02{
position: relative;
margin-left: 30px;
padding-left: 20px;			
border-left: 2px solid #00aaff;
flex: 1;
flex-basis: 300px;   
padding: 20px;
min-width: 250px;    
max-width: 100%;     
box-sizing: border-box;
}

/* interests section */
#interests {
background-color: #f9f9f9; /* Light background for contrast */
padding: 40px 20px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
max-width: 900px;
margin: 0 auto;
}

#interests h2 {
text-align: center;
font-size: 28px;
margin-bottom: 20px;
color: #00aaff;
font-weight: 700;
}

#interests ul {
list-style: none;
padding: 0;
display: grid;
grid-template-columns: 1fr 1fr; /* 2 columns on desktop */
gap: 10px 30px;
}

#interests ul li {
padding-left: 25px;
position: relative;
font-size: 16px;
color: #333;
line-height: 1.6;
}

#interests ul li::before {
content: "✔";
position: absolute;
left: 0;
color: #00aaff;
font-size: 16px;
}

/* Responsive: Stack items on small screens */
@media (max-width: 768px) {
#interests ul {
	grid-template-columns: 1fr;
}

#interests h2 {
	font-size: 24px;
}
}

/* project section */
#projects {
padding: 40px 20px;
background-color: #fff;
max-width: 1500px;
margin: 0 auto;
}

#projects h2 {
text-align: center;
font-size: 28px;
margin-bottom: 30px;
color: #00aaff;
}

.project-list {
	display: grid;
grid-template-columns: 1fr 1fr; 
gap: 20px 40px;
}

.project {
padding: 20px;
border-left: 4px solid #00aaff;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.project h3 {
margin: 0 0 10px;
font-size: 20px;
}

.project h3 a {
color: #00aaff;
text-decoration: none;
}

.project h3 a:hover {
text-decoration: underline;
}

.project p {
font-size: 15px;
color: #333;
line-height: 1.6;
}
.sub-title{
	text-align: center;
	font-size: 18px;
	color: #333;
	margin-top: 5px;
}
@media (max-width: 768px) {
.project-list {
	grid-template-columns: 1fr; 
}
}


/* Footer contact section */

#footer {
	display: flex;
	background-color: #f5f5f5;
	color: #909498;
	cursor: default;
	position: relative;
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 72rem;
	z-index: -99;
}

#footer input, #footer textarea {
	color: #717981;
}

#footer a {
	color: #717981;
	border-bottom-color: rgba(113, 121, 129, 0.5);
}

#footer a:hover {
	border-bottom-color: transparent;
	color: #18bfef;
}

		

#footer h3{
color: #717981;
}


#footer input[type="submit"],
#footer .button {
background-color: transparent;
box-shadow: inset 0 0 0 2px #717981;
color: #717981;
}

#footer input[type="submit"]:hover,
#footer .button:hover {
	box-shadow: inset 0 0 0 2px #18bfef;
	color: #18bfef;
}

			

#footer input[type="text"],
#footer input[type="email"],
#footer textarea {
border-color: #e2e2e2;
}

#footer input[type="text"]:focus,
#footer input[type="email"]:focus,
#footer textarea:focus {
	border-color: #18bfef;
}

		

#footer ul.icons.alt li .icon:before {
box-shadow: inset 0 0 0 2px #e2e2e2;
}

#footer ul.icons.alt li a.icon:hover:before {
box-shadow: inset 0 0 0 2px #18bfef;
}

#footer > section {			
flex-basis: 50%;		
flex-grow: 1;			
flex-shrink: 1;
padding: 4rem 4rem 2rem 4rem ;
border-left: solid 2px #e2e2e2;
}

#footer > section.split {			
display: flex;
flex-direction: column;
padding: 0;
}

#footer > section.split > section {
	padding: 3rem 4rem 1rem 4rem ;
	border-top: solid 2px #e2e2e2;
}
	
#footer > section.split.contact > section {
	display: flex;
	align-items: center;
	padding: 3.15rem 4rem;	
	}

#footer > section.split.contact > section > :first-child {
	flex-shrink: 0;
	flex-grow: 0;
	width: 6rem;
}


#footer > section.split.contact > section:first-child {
	padding: 4rem 4rem 3rem 4rem;
}

#footer > section.split.contact > section:last-child {
	padding: 3rem 4rem 4rem 4rem;
}

#footer > section.split.contact > section.alt {
	align-items: flex-start;
}

#footer > section.split.contact > section.alt > :last-child {
	margin-top: -0.325rem;
}

#footer form label,
#footer h3,
#footer p {
	font-size: 0.8rem;
}

@media screen and (max-width: 980px) {

	#footer {
	display: block;
	}

	#footer > section {
		border-top: solid 2px #e2e2e2;
	}

	#footer > section:first-child {
		border-top: 0;
	}

	#footer > section.split > section {
		padding: 4rem 4rem 2rem 4rem ;
	}

		#footer > section.split > section:first-child {
			padding: 4rem 4rem 2rem 4rem ;
		}

		#footer > section.split > section:last-child {
			padding: 4rem 4rem 2rem 4rem ;
		}

	#footer > section.split.contact > section {
		padding: 4rem;
	}

		#footer > section.split.contact > section:first-child {
			padding: 4rem;
		}

		#footer > section.split.contact > section:last-child {
			padding: 4rem;
		}

		#footer form label,
		#footer h3,
		#footer p {
			font-size: 0.9rem;
		}

}

@media screen and (max-width: 736px) {

	#footer > section {
		padding: 2rem 2rem 0.1rem 2rem ;
	}

		#footer > section.split > section {
			padding: 2rem 2rem 0.1rem 2rem ;
		}

			#footer > section.split > section:first-child {
				padding: 2rem 2rem 0.1rem 2rem ;
			}

			#footer > section.split > section:last-child {
				padding: 2rem 2rem 0.1rem 2rem ;
			}

		#footer > section.split.contact > section {
			padding: 2rem;
		}

			#footer > section.split.contact > section:first-child {
				padding: 2rem;
			}

			#footer > section.split.contact > section:last-child {
				padding: 2rem;
			}

}

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

	#footer {
		width: 100%;
	}

}

/* copyright section */
#copyright {
	position: relative;
	color: rgba(255, 255, 255, 0.25);
	cursor: default;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	margin: 4rem auto 8rem auto;
	width: calc(100% - 4rem);
	max-width: 72rem;
	z-index: 2;
}

		

#copyright a:hover {
	border-bottom-color: transparent;
	color: #18bfef;
}


#copyright a {
	color: inherit;
	border-bottom-color: inherit;
}

#copyright ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

#copyright ul li {
	border-left: solid 2px;
	display: inline-block;
	line-height: 1;
	margin-left: 1rem;
	padding-left: 1rem;
}

	#copyright ul li:first-child {
		border-left: 0;
		margin-left: 0;
		padding-left: 0;
	}

@media screen and (max-width: 1280px) {

	#copyright {
		margin: 4rem auto;
	}

}

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

	#copyright ul li {
		border-left: 0;
		margin: 1rem 0 0 0;
		padding-left: 0;
		display: block;
	}

		#copyright ul li:first-child {
			margin-top: 0;
		}

}

