* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
	scroll-behavior: smooth;
}

nav {
	padding: 20px;
	display: flex;
	justify-content: right;
	gap: 28px;
	margin-bottom: 32px;
	position: sticky;
	top: 0;
	background-color: white;
	width: 100%;
	z-index: 2;

	a {
		text-decoration: none;
		color: black;
		font-size: 18px;
		font-weight: 500;
	}
}

.first-content,
.second-container,
.previous-work,
.team-wrapper,
.explore,
.connect-section {
	scroll-margin-top: 64px;
}

.first-content {
	display: flex;
	align-items: stretch;
	gap: 8px;

	.left-text {
		flex: 1;
		padding-left: 64px;
		display: flex;
		flex-direction: column;
		gap: 32px;

		img {
			width: 400px;
			height: auto;
		}

		h1 {
			font-size: 64px;
			font-weight: 900;
			line-height: 1.1;
			position: relative;

			img {
				width: 100px;
				position: absolute;
			}
		}
	}


	.right-image {
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;

		img {
			width: 100%;
			max-width: auto;
			height: auto;
		}
	}
}


/* second-container */

.second-container {
	/* border: 2px solid red; */
	width: 90%;
	margin: auto;
	margin-top: 48px;

	.header {
		margin-bottom: 15px;

		h1 {
			font-size: 48px;
			font-weight: 600;
			/* border-bottom: 4px solid #000; */
			display: inline-block;
		}
	}

	.description {
		font-size: 24px;
		color: #333;
		margin-bottom: 40px;
		max-width: 800px;
	}

	.content-container {
		display: flex;
		gap: 40px;
		justify-content: space-between;
		flex-wrap: wrap;
		/* border: 3px solid slateblue; */
		width: 75%;
		justify-self: flex-end;

		.content-box {
			flex: 1;
			min-width: 300px;
			margin-bottom: 20px;

			.content-image {
				width: 100%;
				height: 300px;
				object-fit: cover;
				margin-bottom: 20px;
				border-radius: 4px;
			}

			.content-title {
				font-size: 28px;
				font-weight: bold;
				margin-bottom: 15px;
			}

			.content-description {
				font-size: 18px;
				line-height: 1.5;
				color: #333;
			}
		}
	}
}

/* third container */
.previous-work {
	padding: 40px;
	background-color: #fff;
	text-align: center;
}

.previous-work h1 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 40px;
	text-decoration: underline;
}

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

.project {
	width: 400px;
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.image-wrappers {
	display: flex;
	gap: 5px;
	justify-content: center;
	margin-bottom: 15px;
}

.image-wrappers img {
	width: 100px;
	height: 130px;
	object-fit: cover;
	border-radius: 6px;
}

.project h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

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

.external-icon {
	font-size: 14px;
	margin-left: 4px;
	display: inline-block;
}

.project p {
	font-size: 14px;
	margin: 4px 0;
}

/* Our Team Section */
.team-wrapper {
	padding: 60px 5%;
	background-color: #ffffff;
	text-align: center;
}

.team-wrapper h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 40px;
	color: #000;
}

/* container of team cards */
.team-members {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

/* individual card */
.team-member {
	width: 300px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease;
	text-align: left;
}

/* image on top */
.team-member img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

/* content below image */
.team-member-details {
	padding: 16px;
	border-left: 4px solid #5b1e78;
}

.team-member-details h2 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #000;
}

.team-member-details p {
	font-size: 15px;
	color: #333;
	line-height: 1.5;
}







.explore {
	background-color: #783C91;
	color: white;
	padding: 128px 32px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 64px;
}



.methodology-section {
	background: white;
	color: black;
	padding: 64px 32px;
}

.methodology-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto 64px auto;
	gap: 32px;
}

.methodology-title hr {
	width: 48px;
	height: 2px;
	background: black;
	border: none;
	margin-bottom: 16px;
}

.methodology-title h2 {
	font-size: 36px;
	font-weight: bold;
	margin: 0;
}

.methodology-description p {
	font-size: 20px;
	max-width: 320px;
}

.methodology-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	background: #4C0070;
	padding: 48px 32px;
	color: white;
	font-weight: bold;
	font-size: 20px;
}

.tag {
	display: flex;
	align-items: center;
	gap: 8px;
}














.connect-section {
	background-color: #783C91;
	color: white;
	padding: 52px 32px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.connect-container {
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}

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

.left-text h1 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 8px;
}

.tagline {
	font-style: italic;
	margin-bottom: 32px;
	font-size: 20px;
}

.collab-text {
	font-size: 64px;
	font-weight: bold;
	line-height: 1.2;
}

.lets {
	display: block;
}

.collaborate {
	color: white;
}

.right-info {
	flex: 1;
	min-width: 280px;
	border-left: 4px solid white;
	padding-left: 16px;
}

.email {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 16px;
}

.description {
	font-size: 20px;
	font-style: italic;
	line-height: 32px;
}

@media (max-width: 768px) {
	.connect-section {	
		align-items: flex-start;
	}
	.connect-container {
		flex-direction: column;
	}

	.collab-text {
		font-size: 40px;
	}

	.small-hidden {
		display: none !important;
	}


	.team-members {
		flex-direction: column;
		align-items: center;
	}

	.team-member {
		width: 90%;
	}

	.explore {
		padding: 64px 16px;
	}

	.methodology-header {
		flex-direction: column;
		text-align: center;
	}

	.methodology-description p {
		max-width: 100%;
	}

	.methodology-tags {
		padding: 32px 16px;
		font-size: 20px;
	}

	.content-container {
        justify-self: center !important;
	}

	.first-content {
		flex-direction: column;
	}

}