.contact-section {
	position: relative;
}

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

.hero-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.overlay-content {
	position: absolute;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
	z-index: 2;
	color: white;
}

.overlay-content .region {
	color: #ffa500;
	font-weight: bold;
	letter-spacing: 5px;
	font-size: 14px;
	margin-bottom: 10px;
}

.overlay-content h1 {
	font-size: 48px;
	margin: 0;
}
.card-wrapper {
	position: relative;
	top: -100px;
	display: flex;
	justify-content: center;
	z-index: 3;
}

.card-container {
	display: flex;
	background: white;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 1200px;
	width: 100%;
	margin: 10px;
	align-items: stretch;
}

@media (max-width: 768px) {
	.card-container {
		display: block; /* or grid, depending on your layout */
		padding: 20px; /* optional: reduce padding for smaller screens */
	}
}
.card {
	flex: 1;
	display: flex;
	align-items: flex-start;
	border: none;
}

.card-inner {
	padding-right: 20px;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.divider {
	width: 1px;
	background-color: #e0e0e0;
	margin: 0 20px;
}

.card h2 {
	font-size: 22px;
	margin-bottom: 15px;
}

.card p {
	font-size: 16px;

	margin-bottom: 25px;
}

.buttons {
	margin-top: auto;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-outline,
.btn-filled {
	padding: 12px 20px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-size: 15px;
	display: inline-block;
	text-align: center;
}

.btn-outline {
	border: 2px solid var(--primary-blue);
	color: var(--primary-blue);
	background-color: transparent;
}

.btn-outline:hover {
	background-color: var(--primary-blue);
	color: white;
}

.btn-filled {
	background-color: var(--primary-blue);
	border-color: var(--primary-blue);
	border-radius: 40px;
	width: 100%;
}

.btn-filled:hover {
	background-color: var(--primary-blue);
}

/* Local Offices Section */

/* Grid adjusts column count based on screen width */
.local-offices {
	padding: 60px 20px;
	background: #fff;
}

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

.local-offices h2 {
	font-size: 28px;
	margin-bottom: 10px;
	color: #1c1c1c;
}

.local-offices p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

/* Grid columns adjust automatically */
.office-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Each office box is now a flex row */
.office-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f5f5f5;
	border-radius: 14px;
	padding: 26px 28px;
	text-decoration: none;
	transition: box-shadow 0.3s, transform 0.2s;
}

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

/* Location text */
.office-box h3 {
	margin: 0;
	font-size: 20px;
	color: var(--primary-blue);
	font-weight: 600;
}

/* Round arrow icon */
.office-box .arrow-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #0d2d45; /* dark outline */
	color: #0d2d45; /* dark arrow */
	font-size: 1.2rem;
	transition: background 0.3s, color 0.3s;
}

.office-box:hover .arrow-link {
	background: #0d2d45;
	color: #fff;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
	.office-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile: stacked; larger icon */
@media (max-width: 600px) {
	.office-grid {
		grid-template-columns: 1fr;
	}
	.office-box {
		padding: 24px 20px;
	}
	.office-box .arrow-link {
		width: 44px;
		height: 44px;
		font-size: 1.4rem;
	}
}

/*local-offices section start*/
/* .local-offices {
	padding: 60px 20px;
	background-color: #fff;
}

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

.local-offices h2 {
	font-size: 28px;
	margin-bottom: 10px;
	color: #1c1c1c;
}

.local-offices p {
	font-size: 16px;

	line-height: 1.6;
	margin-bottom: 30px;
}

.office-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.office-box {
	display: block;
	text-decoration: none;
	background: #f5f5f5;
	border-radius: 10px;
	padding: 25px 20px;
	position: relative;
	height: 70px;

	transition: box-shadow 0.3s ease;
}

.office-box:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.office-box h3 {
	font-size: 18px;
	margin-bottom: 15px;
}

.office-box p {
	margin: 4px 0;
	font-size: 15px;
}

.arrow-link {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	border: 2px solid var(--primary-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-blue);
	font-size: 18px;
	transition: all 0.3s ease;
}

.office-box:hover .arrow-link {
	background-color: var(--primary-blue);
	color: white;
}
@media (max-width: 600px) {
	.office-box {
		text-align: center;
	}

	.arrow-link {
		position: static;
		margin: 20px auto 0;
	}
} */

/*local-offices section end*/

/*accordion-section start*/
.accordion-section {
	padding: 60px 20px;
}

.accordion-section .container {
	max-width: 800px;
	margin: 0 auto;
}

.accordion-section h2 {
	font-size: 28px;
	margin-bottom: 15px;
	color: #1c1c1c;
}

.accordion-section p {
	color: var(--primary-blue);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.accordion-item {
	border-bottom: 1px solid #ddd;
}

.accordion-header {
	background: transparent;
	border: none;
	outline: none;
	width: 100%;
	text-align: left;
	padding: 20px 10px;
	font-size: 17px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-header .arrow {
	width: 16px;
	height: 16px;
	border-right: 2px solid #143c8a;
	border-bottom: 2px solid #143c8a;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	margin-left: 10px;
}

.accordion-header.active .arrow {
	transform: rotate(-135deg);
}

.accordion-body {
	display: none;
	padding: 0 10px 20px;
	font-size: 15px;
	color: var(--primary-blue);
	line-height: 1.6;
}

.accordion-link {
	display: inline-block;
	margin-top: 10px;
	color: #0038a8;
	text-decoration: underline;
	font-weight: 500;
}
/* Remove rounded border from entire accordion */
.accordion {
	border: none;
	box-shadow: none;
}

/* Only show bottom border for each item */
.accordion-item {
	border: none;
	border-bottom: 1px solid #ddd;
}

/* Optional: remove last item's bottom border if needed */
.accordion-item:last-child {
	border-bottom: none;
}
/*accordion-section end*/

/*expertise-section section start*/
.expertise-section {
	padding: 40px 20px;
}

.expertise-wrapper {
	display: flex;
	max-width: 1200px;
	margin: auto;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
	.expertise-wrapper {
		display: block;
		/* padding: 20px;  */
	}
}

.expertise-text {
	background-color: var(--primary-blue); /* deep blue */
	color: white;
	padding: 60px 40px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.expertise-text p {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.btn-outline-white {
	display: inline-block;
	padding: 14px 30px;
	border: 2px solid #fff;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.btn-outline-white:hover {
	background-color: white;
	color: var(--primary-blue);
}

.expertise-image {
	flex: 1;
}

.expertise-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

/*expertise-section section end*/

/*cta-strip section start*/
.cta-strip {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	color: #fff;

	text-align: left;
}

.cta-box {
	flex: 1;
	min-width: 300px;
	padding: 40px 30px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	background-size: cover;
	background-position: center;
}

.cta-box h3 {
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: 600;
}

.cta-box p {
	font-size: 16px;
	margin-bottom: 25px;
	line-height: 1.5;
}

.btn-outline-white,
.btn-outline-dark {
	padding: 12px 24px;
	font-weight: bold;
	text-decoration: none;
	border: 2px solid;
	border-radius: 2px;
	display: inline-block;
	transition: 0.3s ease;
}

.btn-outline-white {
	border-color: #fff;
	color: #fff;
}

.btn-outline-white:hover {
	background-color: #fff;
	color: #002244;
}

.btn-outline-dark {
	border-color: #002244;
	color: #002244;
	background-color: #fff;
}

.btn-outline-dark:hover {
	background-color: #002244;
	color: #fff;
}

/* Colors */
.cta-box.blue {
	background-color: #0d2d45;
	color: #fff;
}

.cta-box.orange {
	background-color: #ff6961;
	color: #2c2c2c;
}

.cta-box.darkblue {
	background-color: #0d2d45;
	color: #fff;
}

/*cta-strip section end*/

/*contact form css start*/

.contact-card,
.map-card {
	background: #fff;
	border-radius: 24px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	padding: 24px;
	margin: 10px;
}
.contact-card .form-control-lg {
	border-radius: 14px;
}
.contact-card textarea.form-control {
	border-radius: 16px;
}
.map-header h3 {
	font-weight: 700;
}
.office-btn {
	margin: 4px;
}
.office-btn.active {
	color: #fff;
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}
@media (min-width: 992px) {
	.contact-card,
	.map-card {
		padding: 32px;
	}
}
/*contact form css end*/

/* Turn contact-info into a horizontal row with two equal columns */
.map-card .contact-info {
	background-color: #0d2d45;
	padding: 10px;
	border-radius: 16px;
	box-shadow: 0 4px 10px rgba(13, 45, 69, 0.08);
	display: flex;
	gap: 8px; /* gap between the two items */
}

.map-card .contact-info .contact-item {
	flex: 1 1 50%; /* each item takes up half the width */
	display: flex;
	align-items: center;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	gap: 8px; /* space between icon and text */
}

.map-card .contact-info .contact-item i {
	color: #fff;
	font-size: 18px;
}
.contact-info .row {
	width: 90%;
}
@media screen and (max-width: 500px) {
    .contact-info .row {
        width: 100% !important;
    }
}
