/* Reset some default styles */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-padding-top: 120px;
}
a{
	cursor: pointer!important;
}

/* Body styling */
body {
	font-family: "Open Sans", Arial, sans-serif; /* Body text uses Open Sans */
	overflow-x: hidden;
}

h2,
h4,
h5,
h6 {
	font-family: "IBM Plex Sans", Arial, sans-serif; /* Headings use IBM Plex Sans */
	font-weight: 500;
}

/* Navigation Menu Styles */
.nav-menu {
	flex: 1;
	max-width: 455px;
}

.nav-button {
	width: 455px;
	height: 70px;
	padding: 15px 20px;
	margin-bottom: 10px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	text-align: left;
	font-size: 1rem;
}

.nav-button.active {
	background: #0a4275;
	color: white;
}

.nav-button:hover {
	background: #f8f9fa;
}

.nav-button.active:hover {
	background: #0a4275;
}

.nav-menu div {
	font-size: 22px;
}

.icon-container {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.button-content {
	display: flex;
	align-items: center;
	flex: 1;
}

.container {
	max-width: 90%;
	margin: 0 auto;
	padding: 20px;
}

/* Header */
.header {
	text-align: center;
	margin-bottom: 40px;
}

.header h2 {
	font-size: 2.18rem;

	color: #222;
}

/*About us Page*/
body {
	line-height: 1.6;
	color: #333;
}

.hero-header {
	position: relative;
	height: 400px;
	width: 100%;
	overflow: hidden;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.8);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 30, 60, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-title {
	color: white;
	font-size: 3.5rem;
	font-weight: 600;
	text-align: center;
}

/* Content section styles */
.content-section {
	max-width: 1171px;
	max-height: 551px;
	margin: 0 auto;
	padding: 70px 20px;
	display: flex;
	gap: 40px;
}

.left-column {
	flex: 1;
	padding-right: 20px;
}

.right-column {
	flex: 2;
	position: relative;
	padding-left: 20px;
}

.vertical-divider {
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background-color: #00a0e3;
}

.about-label {
	color: #0d3c68;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.about-label::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	background-color: #0d3c68;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.what-we-do {
	font-size: 2.5rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 12px;
}

.left-description {
	color: #555;
	font-size: 1rem;
	max-width: 401px;
}

.company-description {
	color: #555;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 12px;
}

/* Mission & Vision Tabs Section styles */
.mission-vision-section {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}

.tab-container {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	/* Remove gap between buttons */
	gap: 0;
	border-radius: 8px;
	overflow: hidden; /* This ensures the outer corners are rounded but inner corners stay sharp */
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.tab-button {
	background: #f0f5fb; /* Light blue/white for inactive */
	border: none;
	padding: 12px 40px;
	font-size: 16px;
	font-weight: 600;
	color: #333; /* Darker text for better contrast on light background */
	cursor: pointer;
	transition: all 0.3s ease;
	/* Remove individual border radius */
	border-radius: 0;
}

.tab-button.active {
	background-color: #0d3c68; /* Dark blue for active */
	color: white; /* White text on dark background */
}

/* Add specific styling for the first and last buttons to round only outer corners */
.tab-button:first-child {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.tab-button:last-child {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

/* Statistics Section */
.statistics-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.stats-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
}

.stat-item {
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat-number {
	font-size: 42px;
	font-weight: 700;
	color: #000000; /* Changed to black as requested */
	margin-bottom: 5px;
}

.stat-description {
	font-size: 14px;
	color: #666;
}

.mission-image-container {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mission-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mission-label {
	color: #0d3c68;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.mission-label i {
	font-size: 10px;
	margin-right: 8px;
	color: #0d3c68;
}

.mission-title h2 {
	font-size: 18px;
}

.mission-title {
	font-size: 36px;
	line-height: 47px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.mission-description {
	color: #454545;
	font-size: 14px;
	margin-bottom: 25px;
}

.read-more-btn {
	display: inline-block;
	background-color: #0d3c68;
	color: white;
	padding: 10px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
	align-self: flex-start;
}

.read-more-btn:hover {
	background-color: #0a2847;
}
.mb-show{
	display: none;
}

/* Responsive styles for What We Do and Mission & Value sections */

@media screen and (max-width: 768px) {
	.mb-show{
		display: block;
	}
	/* Content Section (What We Do) */
	.content-section {
		flex-direction: column;
		padding: 40px 20px;
		max-height: none;
		gap: 30px;
	}

	.left-column {
		flex: none;
		padding-right: 0;
		width: 100%;
	}

	.right-column {
		flex: none;
		padding-left: 0;
		width: 100%;
		margin-top: 20px;
	}

	.vertical-divider {
		position: absolute;
		left: 0;
		top: 0;
		width: 4px;
		height: 100%;
		background-color: #00a0e3;
	}

	.company-description {
		padding-left: 15px;
	}

	/* Mission & Vision Section */
	.tab-container {
		width: 100%;
		max-width: 300px;
	}

	/* Statistics Section */
	.statistics-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.mission-image-container {
		order: 1;
	}

	.mission-content {
		order: 2;
	}

	.stats-container {
		order: 3;
		margin-top: 30px;
	}

	.stat-item {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		margin-bottom: 20px;
	}

	.stat-number {
		font-size: 36px;
		margin-bottom: 5px;
	}

	.stat-description {
		font-size: 14px;
	}
}

@media screen and (max-width: 576px) {
	/* Content Section (What We Do) */
	.what-we-do {
		font-size: 2rem;
	}

	.left-description {
		font-size: 0.9rem;
	}

	.company-description {
		font-size: 0.9rem;
	}

	/* Mission & Vision Section */
	.tab-container {
		max-width: 250px;
	}

	.tab-button {
		padding: 10px 30px;
		font-size: 14px;
	}

	/* Mission Content */
	.mission-title {
		font-size: 24px;
	}

	.mission-description {
		font-size: 0.9rem;
	}

	.read-more-btn {
		padding: 8px 20px;
		font-size: 14px;
	}

	/* Statistics */
	.stat-number {
		font-size: 32px;
	}

	.stat-description {
		font-size: 12px;
	}
}


/* Special mobile layout for statistics section to match design */
@media screen and (max-width: 768px) {
	.statistics-section {
		display: flex;
		flex-direction: column;
	}


	.mission-content {
		order: 1;
		margin-bottom: 30px;
	}

	.stats-container {
		order: 3;
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.mission-image-container {
		order: 2;
		margin-bottom: 30px;
	}

	/* Make statistics display horizontally on mobile */
	.stat-item {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 15px;
	}

	.stat-number {
		margin-bottom: 0;
		min-width: 100px;
	}
}

/* Extra small devices */
@media screen and (max-width: 480px) {
	/* Content Section (What We Do) */
	.content-section {
		padding: 30px 15px;
	}

	.what-we-do {
		font-size: 1.8rem;
	}

	/* Mission & Vision Section */
	.mission-vision-section {
		padding: 0 15px;
	}

	/* Statistics Section */
	.statistics-section {
		padding: 0 15px;
	}

	/* Make statistics display vertically on very small screens */
	.stat-item {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.stat-number {
		margin-bottom: 5px;
	}
}

/* Team Section */
.team-section {
	background-color: #eef7ff;
	padding: 80px 20px;
}

.team-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Top Row - Header and Featured Members */
.team-top-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
	align-items: center;
}

.team-header {
	text-align: left;
}

.team-label {
	color: #0d3c68;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.team-label i {
	font-size: 10px;
	margin-right: 8px;
	color: #0d3c68;
}

.team-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.team-description {
	color: #666;
	max-width: 500px;
}

/* Featured Members */
.featured-members {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.team-member.featured {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background-color: white;
	height: 100%;
}

.team-member-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.team-member:hover .team-member-image {
	transform: scale(1.05);
}

/* Bottom Row - Regular Members */
.team-bottom-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.team-member {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background-color: white;
	aspect-ratio: 1 / 1.2; /* Maintain consistent aspect ratio */
}

/* Responsive Styles */
@media (max-width: 992px) {
	.team-top-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.team-header {
		text-align: center;
	}

	.team-description {
		margin: 0 auto;
	}

	.team-label {
		justify-content: center;
	}

	.team-bottom-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.featured-members {
		grid-template-columns: 1fr;
	}

	.team-bottom-row {
		grid-template-columns: 1fr;
	}
}

/* Newsletter Section */
.newsletter-section {
	background-color: #0d3c68;
	color: white;
	padding: 50px 20px;
}

.newsletter-container {
	max-width: 1200px;
	margin: 0 auto;
}

.newsletter-title {
	font-size: 24px;
	margin-bottom: 10px;
}

.newsletter-description {
	margin-bottom: 20px;
	max-width: 500px;
}

.newsletter-form {
	display: flex;
	max-width: 500px;
}

.newsletter-input {
	flex: 1;
	padding: 12px 15px;
	border: none;
	border-radius: 4px 0 0 4px;
	font-size: 14px;
}

.subscribe-btn {
	background-color: #0099ff;
	color: white;
	border: none;
	padding: 0 20px;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
	background-color: #007acc;
}

/* Footer */
.footer {
	background-color: #0d3c68;
	color: white;
	padding: 50px 20px 20px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.footer-column h4 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: white;
}

.contact-info li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-info li i {
	margin-right: 10px;
	width: 16px;
	text-align: center;
}

.footer-bottom {
	max-width: 1200px;
	margin: 40px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	color: #ccc;
	font-size: 14px;
}

.footer-legal {
	font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.statistics-section {
		grid-template-columns: 1fr;
	}

	.stats-container {
		flex-direction: row;
		justify-content: space-between;
	}

	.footer-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.team-row {
		flex-wrap: wrap;
		justify-content: center;
	}

	.team-member {
		max-width: 45%;
	}

	.team-member.featured {
		max-width: 45%;
	}

	.stats-container {
		flex-direction: column;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 10px;
	}

	.tab-container {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.tab-button {
		width: 100%;
		max-width: 250px;
	}
}

@media (max-width: 576px) {
	.team-member,
	.team-member.featured {
		max-width: 100%;
	}

	.footer-container {
		grid-template-columns: 1fr;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-input {
		border-radius: 4px;
		margin-bottom: 10px;
	}

	.subscribe-btn {
		border-radius: 4px;
		padding: 12px;
	}
	.cards-container {
		display: block;
	}
	.cards-container .card {
		margin-bottom: 20px;
	}
	.about {
		padding: 70px 15px;
		height: auto;
	}
}

/* Reset styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

/* Hero Header */
.hero-header {
	position: relative;
	height: 400px;
	width: 100%;
	overflow: hidden;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.8);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 30, 60, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-title {
	color: white;
	font-size: 3.5rem;
	font-weight: 600;
	text-align: center;
}




/* .open{
	width: 0;
	transition: 0.3s ease-in-out;
	animation: width 0.3s ease-in-out;
}

@keyframes width {
	0% {
		width: 0;

	}
	100% {
		width: 100%;
	}
} */