@charset "UTF-8";

/*----------Global General----------*/
	* {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	html {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	body {
		font-family: 'Open Sans', Arial, sans-serif;
		background: #f7f9fc;
		color: #333;
		line-height: 1.6;
	}

/*----------Global Header----------*/

	/* Header (contains nav) */
		header {
			background: #003366;
			color: white;
			text-align: center;
			padding: 1rem 1rem 0.5;
			position: sticky;
			top: 0;
			z-index: 2000;
			width: 100%;
		}

	/* Site title and subtitle */
		h1 {
			font-size: 1.8rem;
			margin-bottom: 0.25rem;
		}

		header p {
			margin-bottom: 0.75rem;
		}

		.hero-tagline {
			font-size: 1.1rem;
			font-weight: 600;
			color: #e6e6e6;
			margin-top: 0.25rem;
			margin-bottom: 1rem;
		}

	/* Navigation bar inside header */
		header nav {
			background: #002244;
			padding: 1rem 0;
			margin-top: 0;
			width: 100vw; /* Force full width across viewport */
			position: relative;
			left: 50%;
			transform: translateX(-50%);
			z-index: 1999;
		}

		header nav a {
			color: white;
			text-decoration: none;
			margin: 0 1rem;
			font-weight: bold;
			display: inline-block;
		}

		header nav a:hover,header nav a:focus {
			text-decoration: underline;
		}

		/* Highlight current page in navigation */
			header nav a.active {
				color: #FFD700; /* Gold – high contrast against #002244 */
				text-decoration: underline;
			}


/*----------Gobal Main content area----------*/
	.content-container {
		max-width: 900px;
		margin: 2rem auto 4rem;
		padding: 2rem 1rem;
		background: #d4e8f1;
		border-radius: 8px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}

	h2 {
		color: #003366;
		font-size: 1.4rem;
		margin-bottom: 1rem;
	}

	ul {
		padding-left: 1.5rem;
	}

	li {
		margin-bottom: 0.5rem;
	}

	.indent {
		text-indent: 2em;
	}

	.textcentre {
		text-align: center;
	}

	.textright {
		text-align: right;
	}

.content-container h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #003366;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}


/*----------Global Responsive----------*/

	/* Responsive Navigation for Mobile */
		@media (max-width: 600px) {
			header nav a {
			display: block;
			margin: 0.5rem 0;
			}
		}

	/* Responsive Container Padding */
		@media (max-width: 768px) {
			.content-container {
				padding: 1.5rem 1rem;
			}
		}

/*----------Global Bottom CTA Let's Connect----------*/
.lets-connect {
	background: #e6effa;
	padding: .75rem 1rem;
	text-align: center;
	border-radius: 8px;
	margin-top: 2rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.lets-connect h2 {
	color: #003366;
	margin-bottom: 0 0 0.25rem 0;
	font-size: 1rem;
	line-height: 1.2;
}

.lets-connect p {
	margin-bottom: 0 0 1.25rem 0;
	font-size: 0.95rem;
	line-height: 1.4;
}

.connect-button {
	display: inline-block;
	background-color: #003366;
	color: white;
	padding: .75rem 0.75rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	font-size: 0.95rem;
	transition: background-color 0.3s ease;
	margin-top: 1rem; /* Add spacing above the button */
}

.connect-button:hover,
.connect-button:focus {
	background-color: #002244;
	text-decoration: none;
}


/*----------About Me----------*/
	.personal-tagline {
		font-style: italic;
		font-weight: 600;
		color: #003366;
		margin-bottom: .5rem;
		display: block; 
	}

/*----------Core Strengths----------*/
	.strength-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 1.5rem;
		margin-top: 2rem;
	}

	.strength-box {
		background: #ffffff;
		border: 1px solid #ddd;
		border-radius: 12px;
		padding: 1.5rem;
		width: 47%;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
		text-align: left;
		transition: transform 0.2s ease;
	}
	
	.strength-box:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	}

	.strength-box h3 {
		font-size: 1.15rem;
		color: #003366;
		margin-bottom: 0.75rem;
	}

	.strength-box ul {
		padding-left: 1.25rem;
		margin: 0;
	}

	.strength-box li {
		margin-bottom: 0.5rem;
		font-size: 0.95rem;
		line-height: 1.4;
	}

	/* Mobile responsive fallback */
		@media (max-width: 768px) {
			.strength-box {
				width: 100%;
			}
		}


/*----------Quick Stats----------*/
	/* Quick Stats Section */
		.quick-stats-section h2 {
			margin-bottom: 1.5rem;
		}

	/* Stats Grid - using percentage widths instead of 1fr */
		.stats-grid {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			gap: 1rem;
		}

	/* Stat Box */
		.stat-box {
			background: #ffffff;
			border: 1px solid #d9e2ec;
			border-left: 4px solid #003366;
			border-radius: 10px;
			padding: 1rem;
			text-align: center;
			font-size: 0.92rem;
			line-height: 1.4;
			box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
			transition: transform 0.2s ease, box-shadow 0.2s ease;
			width: 22%; /* roughly 4 per row within 900px content */
			min-width: 200px;
			box-sizing: border-box;
			display: flex;
			flex-direction: column;
			justify-content: center;
		}

		.stat-box:hover {
			transform: translateY(-2px);
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
		}

		.stat-box strong {
			font-size: 1.3rem;
			color: #003366;
			display: block;
			margin-bottom: 0.5rem;
		}	

	/* Responsive adjustments */
		@media (max-width: 1024px) {
				.stat-box {
					width: 47%;
				}
			}

		@media (max-width: 600px) {
			.stat-box {
				width: 100%;
			}
		}


/*----------Accordian Styles for Case Studies/Approach/Skills&Tools----------*/
	.accordion-item {
		border-bottom: 1rem solid #ccc;
		margin-bottom: 1rem;
		overflow: hidden;
		border-radius: 8px;
	}

	/* Hide radio inputs */
		.accordion-item input[type="checkbox"] {
			display: none;
		}

	/* Header */
		.accordion-item label {
			display: flex;
			justify-content: space-between;
			align-items: center;
			background: #003366;
			color: #fff;
			padding: 1rem;
			font-weight: bold;
			cursor: pointer;
			transition: background 0.3s ease;
			border-radius: 8px 8px 0 0;
		}

		.accordion-item label:hover {
			background: #002244;
		}

	/* Arrow icon */
		.accordion-item .arrow {
			transition: transform 0.3s ease;
		}

	/* Content box */
		.accordion-content {
			max-height: 0;
			overflow: visible;
			background: #f9fbfd; /* Soft tinted background */
			transition: max-height 0.3s ease, padding 0.3s ease;
			padding: 0 1rem;
			border-top: 1px solid #ccc;
		}

	/* Show content when selected */
		.accordion-item input:checked ~ .accordion-content {
			max-height: none; /* expand to natural height */
			padding: 1rem;
			overflow: visible;
			display: block; /* ensure normal flow */
		}

	/* Rotate arrow when open */
		.accordion-item input:checked ~ label .arrow {
			transform: rotate(180deg);
			overflow: visible;
		}

	/* Bullet styling */
		.accordion-content ul {
			list-style-type: disc;
			padding-left: 1.5rem;
			margin: 0;
		}

		.accordion-content li {
			margin-bottom: 0.5rem;
		}

		/* Unified card-style box shadows */
		.content-container,
		.strength-box,	
		.stat-box,
		.testimonial-card,
		.contact-card {
		  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06)
		}

/*----------Approach----------*/
	/* Reset counter for steps */
		.approach-grid {
			list-style: none;
			padding-left: 0;
			margin-top: 2rem;
			counter-reset: step-counter;
			position: relative;
		}

	/* Step box */
		.approach-grid li {
			background: #ffffff;
			border-left: 5px solid #003366;
			padding: 1rem 1.25rem;
			margin-bottom: 1.25rem;
			border-radius: 8px;
			box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
			position: relative;
			counter-increment: step-counter;
			transition: transform 0.2s ease;
			margin-left: 0rem;
			width: calc(100% - 1rem);
		}

	/* Cascading visual indent */

		.approach-grid li:nth-child(1) {
			margin-left: 0rem;
			width: calc(100% - 0rem);
		}

		.approach-grid li:nth-child(2) {
			margin-left: 1rem;
			width: calc(100% - 1rem);
		}

		.approach-grid li:nth-child(3) { 
			margin-left: 2rem; 
			width: calc(100% - 2rem);
		}

		.approach-grid li:nth-child(4) { 
			margin-left: 3rem; 
			width: calc(100% - 3rem);
		}

		.approach-grid li:nth-child(5) { 
			margin-left: 4rem; 
			width: calc(100% - 4rem);
		}

		.approach-grid li:nth-child(6) { 
			margin-left: 5rem; 
			width: calc(100% - 5rem);
		}

		.approach-grid li:nth-child(7) { 
			margin-left: 6rem; 
			width: calc(100% - 6rem);
		}

		.approach-grid li:nth-child(8) { 
			margin-left: 7rem; 
			width: calc(100% - 7rem);
		}

	/* Step number bubble */
		.approach-grid li::before {
			content: counter(step-counter);
			position: absolute;
			top: -10px;
			left: -25px;
			background: #003366;
			color: #fff;
			font-size: 0.85rem;
			font-weight: bold;
			padding: 0.4rem 0.7rem;
			border-radius: 6px;
			box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
		}

	/* Bold titles */
		.approach-grid li strong {
			color: #003366;
			display: block;
			font-size: 1.05rem;
			margin-bottom: 0.25rem;
		}

	/* Optional hover effect */
		.approach-grid li:hover {
			transform: translateY(-2px);
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
		}

		/* Mobile Responsive Stagger Fix for Step Boxes */
		@media (max-width: 768px) {
			.approach-grid li {
				margin-left: 0 !important;
				width: 100% !important;
			}

			.approach-grid li:nth-child(n) {
				margin-left: 0 !important;
				width: 100% !important;
			}

			.approach-grid li::before {
				left: -15px;
				top: 10px;
			}
		}


/*----------Skills & Tools----------*/
	/* Align colon-separated items only in Data, BI & Reporting Tools */
	.tool-list li {
		display: flex;
		align-items: flex-start;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
		line-height: 1.5;
	}

	.tool-list .label {
		width: 200px;
		font-weight: bold;
		flex-shrink: 0;
	}

	.tool-list .value {
		flex: 1;
	}

	.tool-icon-row {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start; /* changed from center */
		gap: 1rem;
		margin-top: 1.5rem;
		padding-top: 1rem;
		border-top: 1px solid #ccc;
		
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow: visible; /* prevent clipping? */
	}

	.tool-icon-row img {
		width: 30px;
		height: 30px;
		object-fit: contain;
		aspect-ratio: 1 / 1;
		padding: 2px;
		box-sizing: content-box;
		display: inline-block;
		vertical-align: middle;
	}

	.tool-icon-row img[src*="visio"] {
		width: 60px;
		height: 60px;
	}

	.tool-icon-row img:hover {
		filter: grayscale(0%);
	}

	@media (max-width: 600px) {
		.tool-list .label {
			width: 100%;
		}

		.tool-list li {
			flex-direction: column;
			align-items: flex-start;
		}
	}

/*----------Testimonials----------*/
	#testimonials {
		padding-top: 1rem;
	}

	.testimonial-card {
		background: #ffffff;
		border: 1px solid #ddd;
		border-radius: 10px;
		padding: 1.5rem;
		margin-bottom: 1.5rem;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
		transition: transform 0.2s ease;
	}

	.testimonial-card:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	}

	.testimonial-card p {
		font-style: italic;
		margin-bottom: 1rem;
	}

	.testimonial-card footer {
		font-weight: bold;
		color: #003366;
	}


/*----------Contact----------*/
	#contact ul {
		list-style: none;
		padding-left: 0;
		margin-top: 1rem;
	}

	#contact li {
		margin-bottom: 0.75rem;
		font-size: 1rem;
		line-height: 1.6;
	}

	#contact a {
		color: #003366;
		text-decoration: none;
	}

	#contact a:hover {
		text-decoration: none;
	}

	.contact-card {
		background: #ffffff;
		border: 1px solid #ddd;
		border-radius: 10px;
		padding: 1.5rem;
		margin-top: 1.5rem;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
		word-break: break-word;

	}

	/* Contact Icons */
		#contact .contact-row {
			display: flex;
			align-items: center;
			gap: 0.75rem;
			margin-bottom: 0.85rem;
			font-size: 1rem;
			line-height: 1.5;
			min-height: 2rem;
		}

		#contact .contact-row .icon {
			width: 20px;
			height: 20px;
			flex-shrink: 0;
			object-fit: contain;
			vertical-align: middle;
		}

		#contact .contact-row .label {
			width: 80px; /* You can tweak this width */
			font-weight: bold;
			flex-shrink: 0;
		}

		#contact .contact-row .value {
			flex: 1;
		}

/* ===== Responsive Navigation ===== */

	.nav-toggle {
		display: none;
	}

	/* Hamburger menu label (visible at small widths) */
		.nav-toggle-label {
			background: #002244;
			color: white;
			padding: 1rem;
			font-size: 1.5rem;
			cursor: pointer;

			width: 100vw;
			position: relative;
			left: 50%;
			transform: translateX(-50%);
			box-sizing: border-box;

			display: none;
			align-items: center;
			justify-content: center;
			gap: 0.5rem;
			line-height: 1.2;
		}

	/* Hamburger icon */
		.hamburger {
			font-size: 1.5rem;
			line-height: 1;
			display: inline-block;
			vertical-align: middle;
			transform: translateY(-3px);
		}

	/* "Menu" text next to icon */
		.menu-text {
			font-size: 1rem;
			font-weight: bold;
			text-transform: uppercase;
			vertical-align: middle;
		}

	/* Full-width nav container */
		.main-nav {
			display: flex;
			flex-direction: row;
			justify-content: center;
			background: #002244;
			width: 100vw;
			position: relative;
			left: 50%;
			transform: translateX(-50%);
			box-sizing: border-box;
			padding: 0; /* ✅ tighter height */
		}

	/* Nav links */
		.main-nav a {
			padding: 0.6rem 1rem; /* ✅ tighter vertical padding */
			margin: 0 0.5rem;
			color: white;
			text-decoration: none;
			font-weight: bold;
		}

	/* Hover and active states */
		.main-nav a:hover,
		.main-nav a:focus {
			text-decoration: underline;
		}

	.main-nav a.active {
		color: #FFD700;
		text-decoration: underline;
	}

	/* Mobile layout override */
	@media (max-width: 768px) {
		.nav-toggle-label {
			display: flex;
		}

		.main-nav {
			display: none;
			flex-direction: column;
		}

		.main-nav a {
			border-top: 1px solid #003366;
			text-align: center;
			margin: 0;
			padding: 1rem; /* ✅ more touch space on mobile */
		}

		.nav-toggle:checked + .nav-toggle-label + .main-nav {
			display: block;isplay: flex;
		}
	}
