* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: #FFFFFF;
	color: #1F2A3A;
	line-height: 1.5;
	scroll-behavior: smooth;
}

/* Color scheme: Blue (#0A4A7A / #1E5A8A) , Orange (#E96C2A / #F17E3A), White */
:root {
	--blue-deep: #0A4A7A;
	--blue-soft: #1E5A8A;
	--blue-light: #EFF7FF;
	--orange-main: #E96C2A;
	--orange-bright: #F27E42;
	--orange-soft: #FFF2E6;
	--gray-light: #F8FAFE;
	--border-light: #E9EDF2;
}

h1, h2, h3, h4, .logo, .hero-title, .section-title, .quote-text {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	letter-spacing: -0.2px;
}

.container {
	width:90%
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header / Navigation */
.site-header {
	background: white;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--border-light);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.9rem 0;
	flex-wrap: wrap;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-icon {
	background: var(--blue-deep);
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.7rem;
}

.logo-text h1 {
	font-size: 1.6rem;
	line-height: 1.2;
	color: var(--blue-deep);
}

.logo-text p {
	font-size: 0.7rem;
	letter-spacing: 1px;
	color: var(--orange-main);
	font-weight: 600;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-menu a {
	text-decoration: none;
	font-weight: 500;
	color: #2C3E50;
	transition: 0.2s;
	font-size: 0.95rem;
	position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
	color: var(--orange-main);
}

.nav-menu a.active::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 2.5px;
	background: var(--orange-main);
	border-radius: 4px;
}

.mobile-toggle {
	display: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: var(--blue-deep);
}

/* Buttons */
.btn-primary {
	background: var(--orange-main);
	color: white;
	padding: 12px 32px;
	border-radius: 40px;
	font-weight: 600;
	transition: 0.25s;
	display: inline-block;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(233,108,42,0.2);
}

.btn-primary:hover {
	background: #D4571E;
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	border: 1.5px solid var(--orange-main);
	color: var(--orange-main);
	padding: 10px 28px;
	border-radius: 40px;
	font-weight: 500;
	transition: 0.2s;
	text-decoration: none;
}

.btn-outline:hover {
	background: #FFF2E6;
}

/* Hero Section */
.hero {
	background: linear-gradient(105deg, var(--blue-light) 0%, #FFFFFF 100%);
	padding: 4rem 0 3.5rem;
	border-bottom: 1px solid var(--border-light);
}

.hero-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3rem;
}

.hero-content {
	flex: 1.2;
}

.hero-badge {
	background: rgba(233,108,42,0.12);
	color: var(--orange-main);
	display: inline-block;
	padding: 0.3rem 1.2rem;
	border-radius: 40px;
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
}

.hero-title {
	font-size: 3.2rem;
	font-weight: 700;
	color: var(--blue-deep);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-sub {
	font-size: 1.2rem;
	color: #4A5A6E;
	margin-bottom: 2rem;
	border-left: 4px solid var(--orange-main);
	padding-left: 1rem;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin: 2rem 0;
}

.hero-img {
	flex: 0.8;
	background: #DCE5EC;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.hero-img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Sections */
section {
	padding: 5rem 0;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--blue-deep);
	position: relative;
	display: inline-block;
}

.section-sub {
	color: #5F6C7A;
	margin-bottom: 3rem;
	max-width: 700px;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.service-card {
	background: white;
	padding: 2rem 1.8rem;
	border-radius: 28px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
	transition: 0.3s ease;
	border: 1px solid var(--border-light);
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 30px -8px rgba(10,74,122,0.08);
	border-color: var(--orange-soft);
}

.service-icon {
	font-size: 2.5rem;
	color: var(--orange-main);
	margin-bottom: 1.2rem;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 0.6rem;
	color: var(--blue-deep);
}

/* Team section */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 2rem;
}

.team-card {
	background: white;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
	transition: 0.2s;
	text-align: center;
	border: 1px solid var(--border-light);
}

.team-img {
	background: #EFF2F6;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.team-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.team-info {
	padding: 1.5rem;
}

.team-info h3 {
	font-size: 1.5rem;
	margin-bottom: 0.2rem;
	color: var(--blue-deep);
}

.team-role {
	color: var(--orange-main);
	font-weight: 600;
	margin-bottom: 0.8rem;
}

/* About block */
.about-block {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	align-items: center;
}
.about-text {
	flex: 1.5;
}
.about-quote {
	flex: 1;
	background: var(--orange-soft);
	padding: 2rem;
	border-radius: 28px;
	font-style: italic;
	font-size: 1.3rem;
	font-family: 'Playfair Display', serif;
	border-left: 6px solid var(--orange-main);
}

/* Expertise detail grid */
.expertise-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.expert-block {
	background: white;
	border-radius: 28px;
	padding: 1.8rem;
	box-shadow: 0 6px 14px rgba(0,0,0,0.02);
	border: 1px solid var(--border-light);
	transition: 0.2s;
}
.expert-block:hover {
	border-color: var(--orange-main);
}
.expert-block i {
	color: var(--orange-main);
	margin-bottom: 0.8rem;
}

/* Footer */
.footer {
	background: var(--blue-deep);
	color: #EFF7FF;
	padding: 3rem 0 2rem;
	margin-top: 3rem;
}
.footer-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
}
.footer-col {
	flex: 1;
	min-width: 200px;
}
.footer-col i {
	margin-right: 8px;
	color: var(--orange-bright);
}
.copyright {
	text-align: center;
	border-top: 1px solid #2F6690;
	padding-top: 2rem;
	margin-top: 2rem;
	font-size: 0.8rem;
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 800px) {
	.mobile-toggle {
		display: block;
	}
	.nav-menu {
		display: none;
		width: 100%;
		flex-direction: column;
		gap: 1rem;
		background: white;
		padding: 1rem 0;
	}
	.nav-menu.active {
		display: flex;
	}
	.hero-title {
		font-size: 2.2rem;
	}
	.container {
		padding: 0 24px;
	}
	.hero-grid {
		flex-direction: column;
	}
}

.page {
	animation: fadePage 0.35s ease;
}
@keyframes fadePage {
	from { opacity: 0; transform: translateY(8px);}
	to { opacity: 1; transform: translateY(0);}
}

.contact-details i {
	width: 28px;
	color: var(--orange-main);
}
.form-input {
	width: 100%;
	padding: 12px 18px;
	margin: 12px 0;
	border: 1px solid var(--border-light);
	border-radius: 60px;
	font-family: 'Inter', sans-serif;
}
textarea.form-input {
	border-radius: 24px;
	resize: vertical;
}
 