@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
--primary-navy: #051024;
--nav-height: clamp(70px, 10vh, 100px);

--primary-blue: #1A56DB;
--text-dark: #1E293B;
--text-muted: #64748B;
--light-bg: #F8FAFC;
--border-color: #E2E8F0;
--max-width: 1300px;
--font-main: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: var(--font-main); 
  color: var(--text-dark); 
  background-color: #FFFFFF; 
  line-height: 1.6; 
  overflow-x: hidden;
  margin: 0;
  padding-top: 0;
}

/* UTILITIES */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 90px 0; }
.pt-150 { padding-top: 150px; }
.bg-light { background-color: var(--light-bg); }
.center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-between.align-start { align-items: flex-start; }
.border-top { border-top: 1px solid var(--border-color); }
.border-bottom { border-bottom: 1px solid var(--border-color); }

/* BUTTONS */
.btn-pill { background: var(--primary-blue); color: #fff !important; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: 0.3s; border: 1px solid var(--primary-blue); cursor: pointer; text-align: center; }
.btn-pill:hover { background: #144bc4; }
.btn-outline { background: transparent; color: var(--primary-navy) !important; border: 1px solid var(--primary-navy); }
.btn-outline-white { background: transparent; color: #fff !important; border: 1px solid #fff; }
.btn-white { background: #fff !important; color: var(--primary-navy) !important; border: 1px solid #fff; }

/* =========================================
2. HEADER & NAVIGATION
========================================= */
header { position: fixed; top: 0; width: 100%; z-index: 1100; background-color: transparent; }
.nav-pill { background: #FFFFFF; display: flex; justify-content: space-between; align-items: center; padding: 10px 15px 10px 30px; border-radius: 100px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid rgba(226, 232, 240, 0.8); position: relative; }
.logo { display: flex; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 35px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
.nav-links > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	transition: color 0.25s ease, background-color 0.25s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a:focus-visible,
.nav-links > li > a.active,
.nav-links > li > a.nav-link-active {
	color: var(--primary-blue);
	background: #e5e7eb;
}
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--primary-navy); cursor: pointer; padding-right: 8px; }

/* Dropdown Styles */
.dropdown-parent {
	position: relative;
}
.dropdown-toggle {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
}
.dropdown-menu {
	display: none;
	position: absolute;
	top: 120%;
	left: 0;
	min-width: 320px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.13);
	padding: 22px 0 18px 0;
	z-index: 1001;
	flex-direction:column-reverse;
	gap: 0;
	border: 1px solid var(--border-color);
}
.dropdown-menu a {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 13px 32px;
	color: var(--primary-navy);
	font-weight: 600;
	font-size: 1.08rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	border-radius: 10px;
}
.dropdown-menu a i {
	font-size: 1.3rem;
	color: var(--primary-blue);
	min-width: 22px;
	text-align: center;
}
.dropdown-menu a:hover {
	background: var(--primary-blue);
	color: #fff;
}
.dropdown-menu a:hover i {
	color: #fff;
}
.dropdown-parent.open .dropdown-menu {
	display: flex;
}
@media (max-width: 900px) {
	.dropdown-menu {
		min-width: 220px;
		left: 0;
		top: 110%;
		padding: 10px 0;
	}
	.dropdown-menu a {
		padding: 10px 18px;
		font-size: 1rem;
	}
}

/* =========================================
3. HERO SECTIONS (MATCHING VIDEO)
========================================= */
/* Landing Page Hero */
.hero-full { position: relative; width: 100%; height: 90vh; min-height: 700px; overflow: hidden; display: flex; align-items: center; justify-content: flex-start; padding-left: 10%; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
.hero-content-center h1 { font-size: 4.5rem; font-weight: 800; color: var(--primary-navy); line-height: 1.1; }
.floating-badge { position: absolute; background: #fff; padding: 12px 24px; border-radius: 50px; font-weight: 700; color: var(--primary-navy); font-size: 0.85rem; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: 1px solid var(--border-color); }
.floating-badge i { color: var(--primary-blue); font-size: 1.2rem; }
.badge-1 { top: 25%; left: 8%; }
.badge-2 { bottom: 15%; left: 50%; transform: translateX(-50%); }
.badge-3 { bottom: 25%; right: 8%; }
.first-view { top: 0%; position: absolute;}


/* Gov Page Hero */
.gov-hero-dark { background: var(--primary-navy); color: #fff; padding-bottom: 0px; }
.split-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cage-uei-box { background: #fff; border-radius: 12px; display: inline-flex; overflow: hidden; margin-top: 10px; }
.code-item { padding: 15px 30px; text-align: center; }
.code-item.border-right { border-right: 1px solid var(--border-color); }
.code-item small { display: block; color: var(--text-muted); font-size: 0.75rem; font-weight: 700; }
.code-item strong { color: var(--primary-navy); font-size: 1.2rem; display: block; }
.gov-hero-right p { color: #94A3B8; font-size: 1.1rem; margin: 20px 0 30px; }
.hero-buttons { display: flex; gap: 15px; }

/* =========================================
4. LANDING PAGE GRIDS (Precision, Advantage, Leadership)
========================================= */
.precision-standards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.standard-item h4 { color: var(--primary-navy); font-size: 1.2rem; margin: 15px 0 10px; }
.standard-item p { color: var(--text-muted); font-size: 0.95rem; }
.std-icon { width: 50px; height: 50px; background: #F0F7FF; color: var(--primary-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.supply-grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.supply-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.supply-card img { width: 100%; height: 280px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
.card-content { padding: 30px; }
.card-content h3 { font-size: 1.5rem; color: var(--primary-navy); margin-bottom: 15px; }
.card-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; min-height: 80px; }
.learn-more { color: var(--primary-blue); text-decoration: none; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }
.advantage-cards-side { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.adv-tall-card { text-align: left; }
.adv-tall-card img { width: 100%; height: 350px; border-radius: 16px; object-fit: cover; margin-bottom: 20px; }
.adv-tall-card h4 { color: var(--primary-navy); margin-bottom: 10px; font-size: 1.2rem; }
.adv-tall-card p { color: var(--text-muted); font-size: 0.9rem; }
.leadership-profiles { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.profile-card h4 { font-size: 1.5rem; color: var(--primary-navy); margin-top: 20px; }
.profile-card .title { display: block; color: var(--text-muted); font-size: 0.75rem; font-weight: 700; margin: 5px 0 15px; }
.profile-card p { color: var(--text-muted); font-size: 0.9rem; }

/* =========================================
5. GOV PAGE GRIDS (Core Categories, Procurement)
========================================= */
.gov-supply-layout { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: center; }
.gov-cat-card { background: #fff; padding: 25px; border-radius: 16px; border: 1px solid var(--border-color); margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.gov-cat-card i { color: var(--primary-blue); font-size: 1.8rem; margin-bottom: 15px; }
.gov-cat-card h4 { color: var(--primary-navy); margin-bottom: 8px; font-size: 1.1rem; }
.gov-cat-card p { color: var(--text-muted); font-size: 0.9rem; }
.center-img-container { height: 600px; border-radius: 24px; overflow: hidden; }
.center-img-container img { width: 100%; height: 100%; object-fit: cover; }
.procurement-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.proc-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }
.proc-card img { width: 100%; height: 220px; object-fit: cover; }
.p-content { padding: 30px; }
.p-content h4 { color: var(--primary-navy); font-size: 1.3rem; margin-bottom: 15px; }
.p-content p { color: var(--text-muted); font-size: 0.95rem; }
.codes-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.clean-list { list-style: none; }
.clean-list li { padding: 12px 0; border-bottom: 1px solid var(--border-color); color: var(--text-muted); font-size: 1rem; }
.clean-list li strong { color: var(--primary-navy); display: inline-block; width: 80px; }

/* =========================================
6. RFQ FORM STYLING
========================================= */
.form-section { margin-bottom: 50px; }
.form-section h3 { font-size: 1.5rem; color: var(--primary-navy); font-weight: 600; margin-bottom: 25px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.rfq-form input[type="text"], .rfq-form input[type="email"], .rfq-form input[type="tel"], .rfq-form select, .rfq-form textarea { width: 100%; padding: 16px; border: 1px solid var(--border-color); border-radius: 8px; font-family: inherit; font-size: 1rem; color: var(--text-dark); background: #fff; transition: 0.3s; }
.rfq-form input:focus, .rfq-form textarea:focus { outline: none; border-color: var(--primary-blue); }

/* Timeline Radios */
.radio-group-inline { display: flex; gap: 30px; align-items: center; padding-top: 15px; }
.radio-container { position: relative; padding-left: 30px; cursor: pointer; font-size: 1rem; color: var(--text-dark); user-select: none; }
.radio-container input { position: absolute; opacity: 0; cursor: pointer; }
.checkmark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; background-color: #fff; border: 2px solid var(--border-color); border-radius: 50%; }
.radio-container input:checked ~ .checkmark { border-color: var(--primary-blue); }
.checkmark:after { content: ""; position: absolute; display: none; top: 4px; left: 4px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary-blue); }
.radio-container input:checked ~ .checkmark:after { display: block; }

/* Budget Radio Boxes */
.budget-radios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.budget-box { cursor: pointer; }
.budget-box input { display: none; }
.box-content { display: block; text-align: center; padding: 15px; border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-muted); transition: 0.3s; font-weight: 500; }
.budget-box input:checked + .box-content { background: var(--primary-navy); color: #fff; border-color: var(--primary-navy); }

/* File Upload */
.file-upload-box { border: 2px dashed var(--border-color); border-radius: 12px; padding: 40px; text-align: center; background: #F8FAFC; cursor: pointer; transition: 0.3s; }
.file-upload-box:hover { background: #F0F7FF; border-color: var(--primary-blue); }

/* Textarea Specific */
.rfq-form textarea { 
	resize: vertical; 
	min-height: 120px;
}

/* =========================================
7. FOOTER & CERT BAR (MATCHING VIDEO)
========================================= */
.cert-flex { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; }
.cert-flex span { font-weight: 600; color: var(--text-muted); font-size: 1.1rem; }
.certifications-bar { background: #f8f9fa; }
.cta-section { background: var(--primary-navy); padding: 60px 0; }
.cta-banner { background: #08162F; border-radius: 24px; padding: 60px; display: flex; justify-content: space-between; align-items: center; }
.cta-banner h2 { font-size: 2.5rem; color: #fff; line-height: 1.2; }
.cta-buttons { display: flex; gap: 15px; }
footer { background: var(--primary-navy); color: #fff; padding: 60px 0 30px; font-size: 0.85rem; }
.footer-6-col { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1.5fr 1.5fr; gap: 30px; margin-bottom: 50px; }
.f-col h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; color: #fff; }
.f-col p { color: #94A3B8; margin-bottom: 10px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 10px; }
.f-col ul a { color: #94A3B8; text-decoration: none; }
.social-icons i { font-size: 1.2rem; color: #fff; margin-right: 15px; margin-top: 10px; cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #94A3B8; font-size: 0.75rem; font-weight: 600; }
.legal-links a { color: #94A3B8; text-decoration: none; margin-left: 20px; }

/* =========================================
8. RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
.split-container, .gov-supply-layout, .supply-grid-2col, .codes-split, .footer-6-col { grid-template-columns: 1fr; gap: 40px; }
.hero-content-center h1 { font-size: 3.5rem; }
.cta-banner { flex-direction: column; text-align: center; gap: 30px; }
.advantage-cards-side, .precision-standards-row { grid-template-columns: 1fr; }
.form-row, .budget-radios { grid-template-columns: 1fr; }
.cert-flex { flex-wrap: wrap; gap: 20px; justify-content: center; }
.gov-supply-layout { grid-template-columns: 1fr; }
.center-img-container { height: 400px; }
}

@media (max-width: 780px) {
.nav-links, .nav-actions { display: none; }
.mobile-menu-btn { display: block; margin-left: auto; order: 99; }
.hero-full { padding-left: 20px; padding-right: 20px; }
.floating-badge { display: none; }

/* Mobile Form Optimization */
.container { padding: 0 18px; }
.section-padding { padding: 60px 0; }
.pt-150 { padding-top: 80px; }
h1 { font-size: 1.8rem !important; }
h2 { font-size: 1.4rem !important; }
h3 { font-size: 1.2rem !important; }

/* Form Sections */
.form-section h3 { font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 8px; }
.form-group label { font-size: 0.75rem; margin-bottom: 7px; }
.rfq-form input[type="text"], .rfq-form input[type="email"], .rfq-form input[type="tel"], .rfq-form select, .rfq-form textarea { 
	padding: 14px; 
	font-size: 16px;
	border-radius: 6px;
}
.form-row { gap: 15px; }
.form-group { margin-bottom: 18px; }

/* Radio Groups */
.radio-group-inline { 
	flex-direction: column; 
	gap: 12px; 
	align-items: flex-start; 
	padding-top: 10px; 
}
.radio-container { font-size: 0.95rem; }

/* Budget Radios */
.budget-radios { 
	grid-template-columns: 1fr; 
	gap: 12px; 
}
.box-content { 
	padding: 14px; 
	font-size: 0.95rem; 
}

/* File Upload */
.file-upload-box { 
	padding: 30px 20px; 
	border-radius: 8px;
}
.file-upload-box i { font-size: 2rem; }
.file-upload-box p { font-size: 0.95rem; }
.file-upload-box small { font-size: 0.8rem; }

/* Buttons */
.btn-pill { 
	padding: 12px 24px; 
	font-size: 0.9rem; 
	border-radius: 40px;
	width: 100%;
}
.btn-submit { 
	margin-top: 25px !important; 
	padding: 16px !important;
}

/* Certification Bar - Responsive */
.certifications-bar { background: #f8f9fa; }
.certifications-bar > div > div { 
	flex-direction: column !important;
	gap: 15px !important;
	align-items: flex-start !important;
}
.certifications-bar > div > div > span { 
	width: 100%;
	text-align: center;
	font-size: 0.9rem;
}
.certifications-bar > div > div > div {
	flex-direction: column !important;
	gap: 15px !important;
	width: 100% !important;
	flex: none !important;
}
.certifications-bar > div > div > div > div {
	width: 100% !important;
	justify-content: flex-start !important;
}

/* CTA Section */
.cta-section { padding: 40px 0; }
.cta-banner { 
	padding: 40px 25px !important; 
	border-radius: 16px;
	background: rgba(8, 22, 47, 0.9) !important;
}
.cta-banner h2 { 
	font-size: 1.6rem; 
	line-height: 1.3;
	margin-bottom: 20px;
}
.cta-buttons { 
	flex-direction: column; 
	gap: 12px; 
	width: 100%;
}
.cta-buttons a { width: 100%; }

/* Footer */
footer { padding: 40px 0 25px; }
.footer-6-col { 
	grid-template-columns: 1fr; 
	gap: 25px; 
	margin-bottom: 30px;
}
.f-col h4 { font-size: 0.8rem; margin-bottom: 15px; }
.f-col p { font-size: 0.8rem; margin-bottom: 8px; }
.f-col ul li { margin-bottom: 8px; }
.f-col ul a { font-size: 0.8rem; }
.social-icons i { font-size: 1rem; margin-right: 10px; }
.footer-bottom { font-size: 0.7rem; }

/* Navigation Header */
.nav-pill { 
	padding: 8px 12px 8px 15px; 
	border-radius: 50px;
}
.logo span { 
	font-size: 0.9rem; 
	margin-left: 8px;
}
.logo img { height: 25px; }

/* Text Adjustments */
.rfq-form > p { 
	font-size: 0.75rem; 
	margin-top: 15px;
}
}

@media (max-width: 480px) {
/* Extra Small Devices */
.container { padding: 0 15px; }
.section-padding { padding: 50px 0; }
.pt-150 { padding-top: 60px; }

/* Typography */
h1 { font-size: 1.6rem !important; line-height: 1.2 !important; }
h2 { font-size: 1.2rem !important; }
h3 { font-size: 1.1rem !important; }

/* Form Specifics */
.form-section { margin-bottom: 35px; }
.form-section h3 { 
	font-size: 1.1rem; 
	margin-bottom: 18px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 12px;
}

.rfq-form input[type="text"], 
.rfq-form input[type="email"], 
.rfq-form input[type="tel"], 
.rfq-form select, 
.rfq-form textarea { 
	padding: 12px; 
	font-size: 15px;
	border-radius: 6px;
}

.form-group label { 
	font-size: 0.7rem; 
	margin-bottom: 6px;
}

.form-row { 
	grid-template-columns: 1fr; 
	gap: 12px;
}

.radio-group-inline { gap: 10px; }
.radio-container { font-size: 0.9rem; }

.budget-radios { gap: 10px; }
.box-content { 
	padding: 12px; 
	font-size: 0.9rem; 
	border-radius: 6px;
}

/* Buttons & CTAs */
.btn-pill { 
	padding: 11px 20px; 
	font-size: 0.85rem;
	border-radius: 35px;
}

.cta-section { padding: 35px 0; }
.cta-banner { 
	padding: 30px 20px !important; 
	border-radius: 12px;
	background: rgba(8, 22, 47, 0.9) !important;
}
.cta-banner h2 { 
	font-size: 1.4rem; 
	margin-bottom: 18px;
	line-height: 1.25;
}

.cta-buttons { gap: 10px; }

/* File Upload */
.file-upload-box { 
	padding: 25px 15px; 
	border-radius: 6px;
}
.file-upload-box i { font-size: 1.8rem; margin-bottom: 8px; }
.file-upload-box p { font-size: 0.9rem; }
.file-upload-box small { font-size: 0.75rem; }

/* Certifications - Mobile Stack */
.certifications-bar > div > div > div > div {
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 12px;
	width: 100% !important;
}
.certifications-bar > div > div > div > div:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.certifications-bar > div > div > span {
	font-size: 0.85rem;
}

/* Footer */
footer { padding: 35px 0 20px; }
.footer-6-col { gap: 20px; }
.f-col h4 { font-size: 0.75rem; margin-bottom: 12px; }
.f-col p { font-size: 0.75rem; }
.f-col ul li { margin-bottom: 6px; }
.f-col ul a { font-size: 0.75rem; }
.social-icons i { font-size: 0.95rem; margin-right: 8px; }
.footer-bottom { font-size: 0.65rem; padding-top: 15px; }
.legal-links a { margin-left: 10px; }

/* Navigation */
.nav-pill { padding: 6px 10px 6px 12px; }
.logo span { font-size: 0.8rem; margin-left: 6px; }
.logo img { height: 22px; }
}

/* Govt Contracting Custom Styles */
.split-gov-hero { align-items: center; gap: 50px; }
.hero-img { border-radius: 20px; width: 100%; max-width: 400px; }
.gov-supply-layout { display: flex; gap: 30px; align-items: stretch; justify-content: center; flex-wrap: wrap; }
.side-cards { display: flex; flex-direction: column; gap: 20px; flex: 1; min-width: 250px; }
.center-img-col { flex: 1.5; min-width: 300px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.center-img-col img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; min-height: 400px; }
.gov-cat-card { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.card-icon { font-size: 2rem; color: var(--primary-blue); margin-bottom: 15px; }
.bottom-center-card { width: 80%; margin: -60px auto 0; position: relative; z-index: 2; text-align: center; }
.trust-split { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.trust-title-col { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.trust-text-col { flex: 1; min-width: 300px; }
.trust-img-right { flex: 1.2; min-width: 300px; }
.procurement-header { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.proc-header-right { max-width: 500px; }
.procurement-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.proc-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.proc-card img { width: 100%; height: 220px; object-fit: cover; }
.p-content { padding: 25px; }
.codes-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media(max-width: 780px) {
    .codes-split { grid-template-columns: 1fr; }
    .bottom-center-card { width: 95%; margin-top: -30px; }
    .split-gov-hero { flex-direction: column; text-align: center; }
}

/* NEW UI ADDITIONS FOR GOV SITE */
.header-absolute { position: absolute; width: 100%; top: 30px; z-index: 1000; left: 0; right: 0;}
.container-header { max-width: 1400px; padding: 0 40px; margin: auto; }
.shield-icon { color: #1A56DB; font-size: 1.6rem; }
.logo-text { font-weight: 700; color: #051024; margin-left: 10px; font-size: 1.1rem; }
.btn-quote { background: #051024 !important; border-color: #051024 !important; }
.btn-blue-pill { background: #1A56DB !important; color: #fff !important; border: 1px solid #1A56DB; min-width: 200px; }
.btn-white-pill { background: #fff !important; color: #051024 !important; border: 1px solid #fff; min-width: 150px; }
.btn-blue-pill:hover { background: #144bc4 !important; }
.btn-white-pill:hover { background: #f1f5f9 !important; }

/* Hero */
.gov-hero-dark { background: #0A1128; color: #fff; padding-bottom: 0px; min-height: 80vh; display: flex; align-items: center; }
.hero-title { font-size: clamp(3rem, 6vw, 4.5rem); color: #fff; margin-bottom: 40px; line-height: 1.1; font-weight: 800; }
.hero-subtitle { color: #cbd5e1; font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.6; margin-top: 25px; max-width: 400px; }
.hero-buttons { margin-top: 30px; display: flex; gap: 15px; flex-wrap: wrap; }
.hero-right-img { width: 100%; max-width: 400px; border-radius: 20px; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.gov-hero-split { align-items: center; }

/* Images */
.full-width-image-section img { width: 100%; height: 450px; object-fit: cover; display: block; object-position: center 30%; }

/* Trust Section */
.trust-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; justify-content: center; }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); color: #051024; margin-bottom: 20px; line-height: 1.1; font-weight: 800; }
.trust-left-content { position: relative; margin-top: 30px; }
.trust-left-img { width: 100%; max-width: 350px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-bottom: 25px; }
.trust-desc { color: #64748B; font-size: 1.1rem; line-height: 1.7; }
.trust-right-img { width: 100%; height: 600px; border-radius: 24px; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Supply Layout */
.gov-supply-layout { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: center; }
.side-cards-left { padding-right: 15px; }
.side-cards-right { padding-left: 15px; }
.cat-icon { width: 50px; height: 50px; margin-bottom: 20px; filter: invert(24%) sepia(85%) saturate(2335%) hue-rotate(213deg) brightness(97%) contrast(92%); }
.gov-cat-card { background: #fff; padding: 30px; border-radius: 16px; border: 1px solid #E2E8F0; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: 0.3s; }
.gov-cat-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); }
.gov-cat-card h4 { color: #051024; margin-bottom: 10px; font-size: 1.2rem; font-weight: 700; }
.gov-cat-card p { color: #64748B; font-size: 0.95rem; }
.center-img-container img { width: 100%; height: 750px; object-fit: cover; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

/* Procurement */
.mb-40 { margin-bottom: 40px; }
.procurement-header { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 50px; align-items: flex-start; }
.procurement-desc-box { max-width: 500px; }
.procurement-desc-box p { color: #64748B; margin-bottom: 25px; font-size: 1.05rem; }
.dark-overlay-card { position: relative; height: 400px; border-radius: 20px; overflow: hidden; }
.dark-overlay-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.p-dark { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px; background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0) 100%); z-index: 2; height: 50%; display: flex; flex-direction: column; justify-content: flex-end; }
.p-dark h4 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; font-weight: 700; }
.p-dark p { color: #cbd5e1; font-size: 0.95rem; line-height: 1.5; }

/* Certifications */
.certifications-bar { padding: 40px 0; background: #fff; border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }
.cert-flex-container { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; align-items: center; }
.cert-label { color: #64748B; font-weight: 600; font-size: 1rem; padding-right: 20px; }
.cert-pill { border: 1px solid #cbd5e1; padding: 12px 25px; border-radius: 50px; flex: 1; text-align: center; min-width: max-content; display: flex; align-items: center; justify-content: center; gap: 10px; background: #fafafa; transition: 0.3s; }
.cert-pill:hover { border-color: #1A56DB; background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.cert-pill span { font-size: 1.15rem; font-weight: 800; color: #051024; display: block; }
.cert-pill small { font-size: 0.65rem; color: #64748B; font-weight: 700; letter-spacing: 0.5px; }

/* CTA */
.cta-banner { background: rgba(5, 16, 36, 0.85); backdrop-filter: blur(5px); border-radius: 24px; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; border: 1px solid rgba(255,255,255,0.1); }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; color: #fff; margin-bottom: 30px; font-weight: 800; }
.cta-buttons { display: flex; gap: 20px; }

/* Footer Adjusts */
.footer-dark { background: #0A1128; color: #cbd5e1; padding: 80px 0 30px; }
.footer-6-col { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.f-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 0.5px; }
.f-col li { margin-bottom: 15px; }
.f-col li a { color: #cbd5e1 !important; transition: 0.3s; text-decoration: none; }
.f-col li a:hover { color: #fff !important; }
.social-icons i { width: 35px; height: 35px; background: rgba(255,255,255,0.1); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: 0.3s; cursor: pointer; color: #fff; font-size: 1rem; margin-right: 8px; margin-bottom: 8px; }
.social-icons i:hover { background: #1A56DB; transform: translateY(-3px); }
.border-top-auth { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; margin-top: 20px; }

/* Mobile */
@media (max-width: 1024px) {
    .trust-grid, .gov-supply-layout { grid-template-columns: 1fr; }
    .trust-right-img { height: 400px; }
    .center-img-container img { height: 400px; margin: 30px 0; }
    .footer-6-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cert-pill { padding: 10px 15px; }
    .cert-pill span { font-size: 1rem; }
    .footer-6-col { grid-template-columns: 1fr; }
    .gov-hero-dark { min-height: auto; padding-top: 150px; }
    .full-width-image-section img { height: 250px; }
    .side-cards-left { padding-right: 0; }
    .side-cards-right { padding-left: 0; }
}

/* NEW UI ADDITIONS FOR GOV SITE */
.header-absolute { position: absolute; width: 100%; top: 30px; z-index: 1000; left: 0; right: 0;}
.container-header { max-width: 1400px; padding: 0 40px; margin: auto; }
.shield-icon { color: #1A56DB; font-size: 1.6rem; }
.logo-text { font-weight: 700; color: #051024; margin-left: 10px; font-size: 1.1rem; }
.btn-quote { background: #051024 !important; border-color: #051024 !important; }
.btn-blue-pill { background: #1A56DB !important; color: #fff !important; border: 1px solid #1A56DB; min-width: 200px; }
.btn-white-pill { background: #fff !important; color: #051024 !important; border: 1px solid #fff; min-width: 150px; }
.btn-blue-pill:hover { background: #144bc4 !important; }
.btn-white-pill:hover { background: #f1f5f9 !important; }

/* Hero */
.gov-hero-dark { background: #0A1128; color: #fff; padding-bottom: 0px; min-height: 80vh; display: flex; align-items: center; }
.hero-title { font-size: clamp(3rem, 6vw, 4.5rem); color: #fff; margin-bottom: 40px; line-height: 1.1; font-weight: 800; }
.hero-subtitle { color: #cbd5e1; font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.6; margin-top: 25px; max-width: 400px; }
.hero-buttons { margin-top: 30px; display: flex; gap: 15px; flex-wrap: wrap; }
.hero-right-img { width: 100%; max-width: 400px; border-radius: 20px; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.gov-hero-split { align-items: center; }

/* Images */
.full-width-image-section img { width: 100%; height: 450px; object-fit: cover; display: block; object-position: center 30%; }

/* Trust Section */
.trust-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; justify-content: center; }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); color: #051024; margin-bottom: 20px; line-height: 1.1; font-weight: 800; }
.trust-left-content { position: relative; margin-top: 30px; }
.trust-left-img { width: 100%; max-width: 350px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-bottom: 25px; }
.trust-desc { color: #64748B; font-size: 1.1rem; line-height: 1.7; }
.trust-right-img { width: 100%; height: 600px; border-radius: 24px; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Supply Layout */
.gov-supply-layout { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: center; }
.side-cards-left { padding-right: 15px; }
.side-cards-right { padding-left: 15px; }
.cat-icon { width: 50px; height: 50px; margin-bottom: 20px; filter: invert(24%) sepia(85%) saturate(2335%) hue-rotate(213deg) brightness(97%) contrast(92%); }
.gov-cat-card { background: #fff; padding: 30px; border-radius: 16px; border: 1px solid #E2E8F0; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: 0.3s; }
.gov-cat-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); }
.gov-cat-card h4 { color: #051024; margin-bottom: 10px; font-size: 1.2rem; font-weight: 700; }
.gov-cat-card p { color: #64748B; font-size: 0.95rem; }
.center-img-container img { width: 100%; height: 750px; object-fit: cover; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

/* Procurement */
.mb-40 { margin-bottom: 40px; }
.procurement-header { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 50px; align-items: flex-start; }
.procurement-desc-box { max-width: 500px; }
.procurement-desc-box p { color: #64748B; margin-bottom: 25px; font-size: 1.05rem; }
.dark-overlay-card { position: relative; height: 400px; border-radius: 20px; overflow: hidden; }
.dark-overlay-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.p-dark { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px; background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0) 100%); z-index: 2; height: 50%; display: flex; flex-direction: column; justify-content: flex-end; }
.p-dark h4 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; font-weight: 700; }
.p-dark p { color: #cbd5e1; font-size: 0.95rem; line-height: 1.5; }

/* Certifications */
.certifications-bar { padding: 40px 0; background: #fff; border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }
.cert-flex-container { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; align-items: center; }
.cert-label { color: #64748B; font-weight: 600; font-size: 1rem; padding-right: 20px; }
.cert-pill { border: 1px solid #cbd5e1; padding: 12px 25px; border-radius: 50px; flex: 1; text-align: center; min-width: max-content; display: flex; align-items: center; justify-content: center; gap: 10px; background: #fafafa; transition: 0.3s; }
.cert-pill:hover { border-color: #1A56DB; background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.cert-pill span { font-size: 1.15rem; font-weight: 800; color: #051024; display: block; }
.cert-pill small { font-size: 0.65rem; color: #64748B; font-weight: 700; letter-spacing: 0.5px; }

/* CTA */
.cta-banner { background: rgba(5, 16, 36, 0.85); backdrop-filter: blur(5px); border-radius: 24px; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; border: 1px solid rgba(255,255,255,0.1); }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; color: #fff; margin-bottom: 30px; font-weight: 800; }
.cta-buttons { display: flex; gap: 20px; }

/* Footer Adjusts */
.footer-dark { background: #0A1128; color: #cbd5e1; padding: 80px 0 30px; }
.footer-6-col { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.f-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 0.5px; }
.f-col li { margin-bottom: 15px; }
.f-col li a { color: #cbd5e1 !important; transition: 0.3s; text-decoration: none; }
.f-col li a:hover { color: #fff !important; }
.social-icons i { width: 35px; height: 35px; background: rgba(255,255,255,0.1); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: 0.3s; cursor: pointer; color: #fff; font-size: 1rem; margin-right: 8px; margin-bottom: 8px; }
.social-icons i:hover { background: #1A56DB; transform: translateY(-3px); }
.border-top-auth { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; margin-top: 20px; }

/* Mobile */
@media (max-width: 1024px) {
    .trust-grid, .gov-supply-layout { grid-template-columns: 1fr; }
    .trust-right-img { height: 400px; }
    .center-img-container img { height: 400px; margin: 30px 0; }
    .footer-6-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cert-pill { padding: 10px 15px; }
    .cert-pill span { font-size: 1rem; }
    .footer-6-col { grid-template-columns: 1fr; }
    .gov-hero-dark { min-height: auto; padding-top: 150px; }
    .full-width-image-section img { height: 250px; }
    .side-cards-left { padding-right: 0; }
    .side-cards-right { padding-left: 0; }
}

/* Mega Menu Dropdown */
.mega-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); width: min(750px, calc(100vw - 32px)); max-width: 750px; z-index: 1001; box-sizing: border-box; max-height: calc(100vh - 140px); overflow-y: auto; }
.dropdown-parent:hover .mega-menu { display: flex; gap: 20px; }
.mega-column { flex: 1; display: flex; flex-direction: column; gap: 0; }
.mega-item { display: flex; align-items: center; padding: 15px; border-radius: 10px; color: #0A1128; text-decoration: none; transition: 0.3s; }
.mega-item:hover { background: #f8fafc; }
.mega-icon-box { background: #f1f5f9; width: 45px; height: 45px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; }
.mega-icon-box img { width: 22px; height: 22px; }
.mega-item span { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }

/* Adjustments for Supply Cards matching image */
.gov-cat-card { border-radius: 15px; padding: 30px; border: 1px solid #c8d9eb; box-shadow: none; background: #f4f8fb; text-align: left; }
.center-col { display: flex; flex-direction: column; }
.gov-supply-layout { grid-template-columns: 1fr 1.3fr 1fr; align-items: start; }
.mega-menu { display: none; position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%); background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); width: min(600px, calc(100vw - 32px)); min-width: 0; max-width: 600px; z-index: 1001; box-sizing: border-box; max-height: calc(100vh - 140px); overflow-y: auto; }
.dropdown-parent { position: relative; }
.dropdown-parent:hover .mega-menu { display: flex; gap: 30px; }

/* Exact mega menu match */
.page-mega .dropdown-parent {
	position: relative;
}

.page-mega .dropdown-parent .mega-menu {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	width: clamp(320px, 72vw, 760px);
	min-width: 0;
	max-width: calc(100vw - 20px);
	background: #f3f4f6;
	border: 1px solid #d9dce1;
	border-radius: 12px;
	padding: 20px 22px;
	box-shadow: 0 12px 22px rgba(15, 23, 42, 0.16);
	z-index: 2000;
	gap: 24px;
	flex-direction: row;
	box-sizing: border-box;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
}

.page-mega .dropdown-parent:hover .mega-menu {
	display: flex !important;
}

.page-mega .dropdown-parent.open .mega-menu {
	display: flex !important;
}

.page-mega .mega-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.page-mega .mega-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 10px;
	border-radius: 10px;
	text-decoration: none;
	color: #334e68;
	font-weight: 500;
}

.page-mega .mega-item:hover {
	background: #e9edf3;
}

.page-mega .mega-icon-box {
	width: 54px;
	height: 54px;
	border: 1px solid #9ec1df;
	border-radius: 12px;
	background: #eef6fd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 0;
}

.page-mega .mega-icon-box img {
	width: 27px;
	height: 27px;
}

.page-mega .mega-item span {
	font-size: 0.95rem;
	line-height: 1.24;
	letter-spacing: -0.01em;
	color: #334e68;
	font-weight: 500;
}

.page-mega .dropdown-parent .dropdown-menu {
	background: #f3f4f6;
	border: 1px solid #d9dce1;
	padding: 20px 22px;
	border-radius: 12px;
}

@media (max-width: 1100px) {
	.page-mega .dropdown-parent .mega-menu {
		width: min(620px, calc(100vw - 20px));
		max-width: calc(100vw - 20px);
	}
}

@media (max-width: 768px) {
	.page-mega .dropdown-parent .mega-menu {
		position: static;
		transform: none;
		width: 100% !important;
		min-width: 0;
		max-width: none;
		margin-top: 10px;
		flex-direction: column !important;
		gap: 10px;
		max-height: none;
		overflow-y: visible;
		padding: 12px 14px !important;
	}

	.page-mega .mega-item span {
		font-size: 16px;
	}

	.page-mega .mobile-menu-btn {
		padding-right: 4px;
		margin-left: auto;
		order: 99;
	}

	.page-mega .logo-wrap {
		font-size: 0.95rem;
		gap: 6px;
		white-space: nowrap;
	}

	.page-mega .logo-wrap img {
		height: 20px;
	}

	.page-mega .logo-icon {
		padding: 4px !important;
	}

	.page-mega .nav-pill {
		padding: 8px 8px 8px 12px !important;
	}
}

/* Figma rollout: global header and mega menu consistency */
.page-mega main > section:first-child {
	margin-top: 0;
	padding-top: 0;
}
.page-mega main > section:first-child .container {
	padding-top: calc(var(--nav-offset) + 20px) !important;
}

.page-mega header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1100;
}

.page-mega .pt-150 {
	padding-top: max(90px, calc(var(--nav-offset) + 20px));
}

.page-mega .nav-pill {
	background: #f8fafc !important;
	border: 1px solid #dbe2ea !important;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14) !important;
	border-radius: 999px !important;
	padding: 8px 10px 8px 18px !important;
}

.page-mega .nav-links {
	gap: 24px;
}

.page-mega .nav-links > li > a {
	font-size: 0.92rem;
	font-weight: 500;
	color: #34495e;
	padding: 8px 14px;
	border-radius: 999px;
	background: transparent;
}

.page-mega .nav-links > li > a:hover,
.page-mega .nav-links > li > a:focus-visible,
.page-mega .nav-links > li > a.active,
.page-mega .nav-links > li > a.nav-link-active {
	color: #1f73b7;
	background: #e5e7eb;
}

.page-mega .nav-actions .btn-pill {
	background: #1f73b7 !important;
	border-color: #1f73b7 !important;
	border-radius: 999px;
	padding: 12px 28px;
	font-size: 0.95rem;
	font-weight: 600;
}

.page-mega .cta,
.page-mega .cta-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(5, 16, 36, 0.72), rgba(5, 16, 36, 0.72)), url('../IMG\ -\ Copy/2151100372.jpg') center/cover fixed no-repeat !important;
	background-attachment: fixed !important;
	color: #fff;
}

.page-mega .cta::before,
.page-mega .cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(5, 16, 36, 0.18);
	pointer-events: none;
}

.page-mega .cta > *,
.page-mega .cta-section > * {
	position: relative;
	z-index: 1;
}

.page-mega .dropdown-toggle i {
	color: #34495e;
}

.page-mega .dropdown-parent .mega-menu {
	background: #f3f4f6 !important;
	border: 1px solid #d9dce1 !important;
	border-radius: 12px !important;
	box-shadow: 0 12px 22px rgba(15, 23, 42, 0.16) !important;
	padding: 20px 22px !important;
}

.page-mega .mega-item {
	padding: 8px 10px !important;
}

.page-mega .mega-item span {
	font-size: 0.95rem !important;
	font-weight: 500 !important;
	line-height: 1.24 !important;
	color: #334e68 !important;
}

.page-mega .mega-icon-box {
	width: 54px !important;
	height: 54px !important;
	border: 1px solid #9ec1df !important;
	background: #eef6fd !important;
	border-radius: 12px !important;
}

@media (max-width: 768px) {
	.page-mega {
		--nav-offset: 96px;
	}

	.page-mega .hero-full {
		height: auto;
		min-height: 560px;
	}

	.page-mega main > section:first-child {
		padding-top: calc(var(--nav-offset) + 12px);
	}

	.page-mega .pt-150 {
		padding-top: calc(var(--nav-offset) + 10px);
	}
}

header, .navbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: none !important; /* Removes any line under the nav */
    z-index: 9999 !important;
}

/* 2. Ensure the first section starts at the absolute top of the page */
body {
    padding-top: 0 !important; 
    margin-top: 0 !important;
}

/* 3. Push the text down so it doesn't hide behind the logo/nav */
.hero, .hero-full, .hero-section {
    margin-top: 0 !important;
    /* Adjust this 120px value if your text is too close to or too far from the nav */
    padding-top: 120px !important; 
}

header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: transparent !important;
    border-bottom: none !important;
    z-index: 9999 !important;
}

/* --- ADJUST HERO SECTION TO START AT THE TOP --- */
.hero-dark {
    background-color: var(--secondary) !important;
    margin-top: 0 !important;
    /* This pushes your text down so it perfectly centers and doesn't hide behind the logo */
}

/* /* =========================================================
   RESPONSIVE SCALING OVERRIDES (PADDING & TEXT)
   ========================================================= */

/* 1. Dynamic Hero Padding (Scales with Nav Bar Height) */
.hero, .hero-dark, .hero-full, .hero-section {
    margin-top: 0 !important;
    /* This calculates the exact nav height and multiplies it by 1.75 */
    padding-top: calc(var(--nav-height) * 1.75) !important; 
    /* Bottom padding scales dynamically based on viewport height */
    padding-bottom: clamp(50px, 8vh, 100px) !important; 
}

/* 2. Scalable Typography for Hero Sections */
/* The clamp function sets: clamp(minimum size, flexible size, maximum size) */
.hero h1, .hero-dark h1, .hero-full h1, .hero-content h1 {
    /* Scales smoothly from 2.2rem on mobile up to 4.5rem on large screens */
    font-size: clamp(2.2rem, 5vw + 1rem, 4.5rem) !important;
    line-height: 1.15 !important;
    margin-bottom: clamp(15px, 3vw, 30px) !important;
}

/* Subheadings and Paragraphs in the Hero */
.hero p, .hero-dark p, .hero-full p, .hero-content p {
    /* Scales smoothly from 1rem on mobile up to 1.25rem on large screens */
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem) !important;
    line-height: 1.6 !important;
}

/* 3. Scalable Padding for all other standard sections on the page */
section:not(.hero):not(.hero-dark):not(.hero-full) {
    /* Makes standard page sections breathe better on large screens and shrink on mobile */
    padding-top: clamp(40px, 6vh, 90px) !important;
    padding-bottom: clamp(40px, 6vh, 90px) !important;
} 

 @media (max-width: 767px) {
        .nav-container { flex-wrap: nowrap; }
        .pill-nav { margin: 0; }
        /* .hero-dark { padding-top: 1%; } */
        .h11{
            font-size: 3rem;
        }
        .h12{
            font-size: 4rem;
    }
 }

 @media (max-width: 400px) {
        .nav-container { flex-wrap: nowrap; }
        .pill-nav { margin: 0; }
        /* .hero-dark { padding-top: 1%; } */
        .h11{
            font-size: 1rem;
        }
        .h12{
            font-size: 2rem;
    }
 }