/* ==========================================================================
TOP CONTACT BAR (.top_menus)
========================================================================== */
.top_menus {
	background-color: #121212; /* Dark charcoal header bar */
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.825rem;
	color: #b0b0b0;
}

.top-info-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 0;
}

.top-info-item i {
	color: #8bb72a; /* Accent Green */
	font-size: 1rem;
}

.top-info-item a {
	color: #b0b0b0;
	text-decoration: none;
	transition: color 0.2s ease;
}

.top-info-item a:hover {
	color: #ffffff;
}

/* Fallback styling for standard col-sm-4 grid if HTML is unchanged */
.top_menus .col-sm-4 {
	display: flex;
	align-items: center;
	padding-top: 6px;
	padding-bottom: 6px;
}

.top_menus span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.top_menus i {
	color: #8bb72a;
	font-size: 1rem;
}

/* ==========================================================================
MAIN NAVIGATION BAR (#mainNavbar)
========================================================================== */
#mainNavbar {
	background-color: #1d412f; /* Sleek main header background */
	padding: 12px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	position: sticky;
	top: 0;
	z-index: 1030;
}

/* Brand Branding */
.navbar-brand {
	font-weight: 800;
	font-size: 1.2rem;
	letter-spacing: 0.8px;
	color: #ffffff !important;
}

.brand-logo,
.navbar-brand img {
	width: auto;
	height: 36px;
	max-height: 36px;
	margin-right: 12px !important;
	object-fit: contain;
}

.brand-text {
	font-weight: 800;
}

/* Navigation Links */
#mainNavbar .navbar-nav {
	gap: 8px;
}

#mainNavbar .nav-link {
	color: #d1d5db !important;
	font-weight: 500;
	font-size: 0.925rem;
	padding: 8px 16px !important;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.25s ease;
}

#mainNavbar .nav-link i {
	font-size: 1.05rem;
	color: #8bb72a; /* Subtle green touch on icons */
	transition: transform 0.2s ease;
}

/* Hover & Active States */
#mainNavbar .nav-link:hover {
	color: #ffffff !important;
	background-color: rgba(255, 255, 255, 0.05);
}

#mainNavbar .nav-link:hover i {
	transform: translateY(-2px);
}

#mainNavbar .nav-link.active {
	color: #ffffff !important;
	background-color: #8bb72a; /* Highlight current page */
	font-weight: 600;
}

#mainNavbar .nav-link.active i {
	color: #ffffff;
}

/* Mobile Toggler */
.navbar-toggler {
	border-color: rgba(255, 255, 255, 0.15);
	padding: 6px 10px;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.25rem rgba(139, 183, 42, 0.25);
}

/* Responsive adjustments for mobile menu */
@media (max-width: 991.98px) {
	#mainNavbar .navbar-collapse {
		background-color: #1a1a1a;
		padding: 16px;
		border-radius: 8px;
		margin-top: 12px;
		border: 1px solid rgba(255, 255, 255, 0.05);
	}

	#mainNavbar .nav-link {
		padding: 10px 14px !important;
	}

	.top_menus .col-sm-4 {
		justify-content: center;
		text-align: center;
	}
}


/* ==========================================================================
CONTACT PAGE BASE STYLES (.contact_main_pg)
========================================================================== */
.contact_main_pg {
	padding: 80px 0;
	background-color: #f8f9fa;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #333333;
}

.contact_main_pg h2.section-title {
	font-size: 1.85rem;
	font-weight: 800;
	color: #1a1a1a;
	letter-spacing: -0.5px;
}

/* ==========================================================================
MINI CONTACT INFO CARDS (.block_mini)
========================================================================== */
.block_mini {
	background: #ffffff;
	border-radius: 12px;
	padding: 24px 16px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.block_mini:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
	border-color: rgba(139, 183, 42, 0.4); /* Brand Green highlight */
}

/* Icon Box Styling */
.block_mini .icon-box,
.block_mini > i {
	width: 52px;
	height: 52px;
	background-color: #f0f7f4;
	color: #8bb72a; /* Brand Accent Green */
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 14px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.block_mini:hover .icon-box,
.block_mini:hover > i {
	background-color: #8bb72a;
	color: #ffffff;
}

.block_mini h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
}

.block_mini p {
	font-size: 0.85rem;
	color: #666666;
	margin-bottom: 4px;
	line-height: 1.45;
	word-break: break-word;
}

.block_mini a {
	color: #555555;
	text-decoration: none;
	transition: color 0.2s ease;
}

.block_mini a:hover {
	color: #8bb72a;
}

.mini-divider {
	width: 80%;
	border-top: 1px solid #e2e8f0;
	margin: 10px 0;
	opacity: 0.7;
}

.text-accent {
	color: #8bb72a;
	font-weight: 600;
}

/* ==========================================================================
CONTACT FORM STYLING
========================================================================== */
.contact-form-wrapper {
	background: #ffffff;
	padding: 36px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
	height: 100%;
}

.form-intro {
	color: #666666;
	font-size: 0.95rem;
	line-height: 1.6;
}

.form-label-custom {
	font-weight: 600;
	font-size: 0.875rem;
	color: #333333;
	margin-bottom: 8px;
	display: block;
}
 /* Fix for .input-group-addon layout issue */
.form_contacts .input-group {
	display: flex !important;
	align-items: stretch !important;
	width: 100%;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #ced4da;
}

/* Style the icon addon block */
.form_contacts .input-group-addon {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0.375rem 0.75rem;
	background-color: #f8f9fa;
	color: #8bb72a; /* Brand Accent Green */
	border-right: 1px solid #ced4da;
	min-width: 44px;
	font-size: 1.1rem;
}

/* Remove default Bootstrap input borders so input-group manages the outline */
.form_contacts .input-group .form-control {
	flex: 1 1 auto;
	width: 1%;
	border: none !important;
	box-shadow: none !important;
	padding: 0.6rem 0.75rem;
}

.form_contacts .input-group:focus-within {
	border-color: #8bb72a;
	box-shadow: 0 0 0 0.25rem rgba(139, 183, 42, 0.25);
}

.form_contacts .form-control::placeholder {
	color: #aaa;
}

.form_contacts textarea.form-control {
	resize: vertical;
	min-height: 120px;
	border-radius: 8px;
}

/* Submit Button */
.btn-submit,
.form_contacts button[type="button"],
.form_contacts button[type="submit"] {
	background-color: #8bb72a;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.8px;
	padding: 12px 28px;
	border: none;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
	width: 100%;
	margin-top: 8px;
}

.btn-submit:hover,
.form_contacts button:hover {
	background-color: #78a022;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(139, 183, 42, 0.35);
}

.btn-submit i {
	font-size: 1.1rem;
	transition: transform 0.2s ease;
}

.btn-submit:hover i {
	transform: translateX(3px) translateY(-2px);
}

/* ==========================================================================
MAP CONTAINER & RESPONSIVE TWEAKS
========================================================================== */
.map-container,
.contact_main_pg .map {
	margin-top: 48px;
	width: 100%;
	min-height: 380px;
	background-color: #e5e7eb;
	border-radius: 12px;
}

@media (max-width: 991.98px) {
	.contact-form-wrapper {
		padding: 24px;
		margin-top: 24px;
	}
}

@media (max-width: 575.98px) {
	.block_mini {
		padding: 18px 10px;
	}

	.block_mini p {
		font-size: 0.8rem;
	}
}





















.what-we-do-section {
	padding: 80px 0;
	background: #f8fbfd;
}

.section-heading {
	max-width: 850px;
	margin: 0 auto 65px;
}

.section-heading .eyebrow {
	display: inline-block;
	color: #ff5500;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-heading h2 {
	color: #122A4E;
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 20px;
}

.section-heading h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #40B3CE;
	border-radius: 10px;
	margin: 18px auto 0;
}

.section-heading p {
	color: #667085;
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 0;
}

.workshop-row {
	background: #fff;
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 15px 45px rgba(18, 42, 78, 0.08);
	overflow: hidden;
}

.workshop-image {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
}

.workshop-image img {
	width: 100%;
	height: 390px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.workshop-row:hover .workshop-image img {
	transform: scale(1.04);
}

.workshop-content {
	padding: 35px 40px;
}

.workshop-content .small-title {
	color: #ff5500;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.workshop-content h3 {
	color: #122A4E;
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 18px;
}

.workshop-content h3::after {
	content: "";
	display: block;
	width: 45px;
	height: 3px;
	background: #ff5500;
	border-radius: 5px;
	margin-top: 15px;
}

.workshop-content p {
	color: #667085;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.section-heading {
		margin-bottom: 45px;
	}

	.section-heading h2 {
		font-size: 32px;
	}

	.workshop-content {
		padding: 30px 20px;
	}

	.workshop-image img {
		height: 320px;
	}
}

@media (max-width: 575px) {
	.what-we-do-section {
		padding: 60px 0;
	}

	.section-heading h2 {
		font-size: 28px;
	}

	.section-heading p {
		font-size: 15px;
	}

	.workshop-row {
		padding: 12px;
		border-radius: 18px;
	}

	.workshop-image img {
		height: 240px;
	}

	.workshop-content h3 {
		font-size: 25px;
	}
}



/* Footer Base Container */
.footer-section {
	background-color: #1e1e1e; /* Rich charcoal background */
	color: #c5c5c5;
	padding: 60px 0 24px 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 0.9rem;
}

/* Headings */
.footer-heading {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.8px;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

/* Navigation Links */
.footer-links li {
	margin-bottom: 0.6rem;
}

.footer-links a {
	color: #a0a0a0;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.825rem;
	letter-spacing: 0.5px;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
	color: #8bb72a; /* Brand Accent Green */
	padding-left: 4px;
}

/* Logo Styling */
.footer-logo {
	max-width: 180px;
	height: auto;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Contact List Item Layout */
.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 1rem;
	color: #d1d5db;
	font-size: 0.875rem;
	line-height: 1.4;
}

.footer-contact a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.2s ease;
}
 
.footer-contact a:hover {
	color: #8bb72a;
}

/* Circular Icon Badges */
.icon-badge {
	flex-shrink: 0;
	width: 28px !important;
	height: 28px !important;
	background-color: #8bb72a; /* Brand Accent Green */
	color: #1e1e1e !important;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	margin-top: 1px;
}

/* Bottom Divider & Copyright */
.footer-bottom {
	border-color: rgba(255, 255, 255, 0.08) !important;
	font-size: 0.8rem;
}








































