/* Service List Grid: 3 cards per row */


@charset "utf-8";
/* Redesigned Workforce Service Card */
.service-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 24px;
	margin: 0 auto;
	max-width: 1200px;
	align-items: stretch;

}
.workforce-card-redesign {
	background: #0f2040;
	color: #fff;
	border: 1px solid rgba(218, 177, 100, 0.18);
	border-radius: 16px;
	box-shadow: 0 8px 26px 0 rgba(6, 39, 108, 0.2);
	padding: 22px 24px 24px 24px;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 300px;
	max-width: none;
	margin: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.workforce-card-redesign:hover {
	transform: translateY(-4px);
	border-color: rgba(218, 177, 100, 0.45);
	box-shadow: 0 14px 28px rgba(6, 39, 108, 0.28);
}
.workforce-card-redesign .workforce-numeral {
	font-size: 20px;
	color: #dab164;
	font-family: 'Gidugu', serif;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(218, 177, 100, 0.45);
	background: rgba(218, 177, 100, 0.1);
	align-self: center;
}
.workforce-card-redesign .workforce-title {
	font-size: 26px;
	font-weight: 700;
	color: #dab164;
	line-height: 1.25;
	margin-bottom: 16px;
	width: 100%;
	text-align: center;
}

.workforce-card-redesign .workforce-kicker {
	font-size: 14px;
	font-weight: 700;
	color: #dab164;
	line-height: 1.2;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	margin-bottom: 6px;
	text-align: center;
}

.workforce-card-redesign .workforce-title:not(.workforce-kicker) {
	min-height: auto;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}
.workforce-card-redesign .workforce-desc {
	margin-bottom: 0;
	width: 100%;
}

.workforce-points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.workforce-points li {
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	line-height: 1.6;
	color: #d9def1;
}

.workforce-points li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	background: #dab164;
	color: #0f2040;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.workforce-card-redesign > div:last-child {
	margin-top: 14px !important;
	padding-top: 0;
	width: 100%;
	display: flex;
	justify-content: center;
}
.austridge-white-bg {
	background: #fff !important;
	border-radius: 18px;
	box-shadow: 0 2px 16px 0 rgba(6,39,108,0.04);
	padding: 24px 24px 12px 24px;
}
/* White background for The Austridge Group section */
.austridge-white-bg {
	background: #fff !important;
	border-radius: 18px;
	box-shadow: 0 2px 16px 0 rgba(6,39,108,0.04);
}
/* Custom alignment fix for 'What We Offer' section */






/* FINAL BULLETPROOF CIRCULAR ICON: highlight-card icon always stays circular, even on hover/focus/active */
.stat-card.highlight-card .stat-icon,
.stat-card.highlight-card:hover .stat-icon,
.stat-card.highlight-card:focus .stat-icon,
.stat-card.highlight-card:active .stat-icon,
.stat-card.highlight-card .stat-icon:hover,
.stat-card.highlight-card .stat-icon:focus,
.stat-card.highlight-card .stat-icon:active {
	border-radius: 50% !important;
	background: #dab164 !important;
	width: 40px !important;
	height: 40px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 20px !important;
	margin-right: 14px !important;
	box-shadow: none !important;
}
/* FINAL OVERRIDE: Prevent icon and heading color changes on highlight-card hover/focus/active */
.stat-card.highlight-card:hover .stat-header .stat-value,
.stat-card.highlight-card:focus .stat-header .stat-value,
.stat-card.highlight-card:active .stat-header .stat-value {
	color: #dab164 !important;
}
.stat-card.highlight-card:hover .stat-icon i,
.stat-card.highlight-card:focus .stat-icon i,
.stat-card.highlight-card:active .stat-icon i {
	color: #0f2040 !important;
	fill: #0f2040 !important;
}
.stat-card.highlight-card:hover .stat-icon,
.stat-card.highlight-card:focus .stat-icon,
.stat-card.highlight-card:active .stat-icon {
	background: #dab164 !important;
}

/* Highlighted 4th stat card styles */
.stat-card.highlight-card {
  background: #0f2040;
  color: #fff;
  box-shadow: none;
  border-color: #dab164;
  filter: none;
  transition: none;
  outline: none;
}
.stat-card.highlight-card .stat-header .stat-value {
  color: #dab164;
  background: none;
  -webkit-text-fill-color: unset;
}
.stat-card.highlight-card .stat-icon {
  background: #dab164;
}
.stat-card.highlight-card .stat-icon i {
  color: #0f2040;
  fill: #0f2040;
}
.stat-card.highlight-card .services-list li {
  color: #fff;
}
.stat-card.highlight-card .services-list li::before {
  color: #dab164;
  border-color: #dab164;
  background: transparent;
}
/* FINAL OVERRIDE: Ensure highlight-card never loses its background/border on hover/focus/active */
.stat-card.highlight-card:hover,
.stat-card.highlight-card:focus,
.stat-card.highlight-card:active,
.stat-card.highlight-card:hover *,
.stat-card.highlight-card:focus *,
.stat-card.highlight-card:active * {
	background: #0f2040 !important;
	color: #fff !important;
	border-color: #dab164 !important;
	box-shadow: none !important;
	filter: none !important;
	transition: none !important;
	outline: none !important;
}
/* Ensure stat-card1 matches stat-card border and padding */
.stat-card1 {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(6, 39, 108, 0.3);
	border-radius: 20px;
	padding: 50px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}
.stat-card1:hover {
	transform: translateY(-5px);
	background: rgba(106, 107, 109, 0.1);
	border-color: rgba(6, 39, 108, 0.6);
}
.stat-card1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #0f2040, transparent);
	animation: scan 3s linear infinite;
}	
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase !important;
    letter-spacing: 0.6px;
}

body {
	font-family: Plus Jakarta Sans, system-ui, sans-serif;
	/*background: #0a0e27;*/
	color: #ffffff;
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 30px;
	background: white;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 15px 30px;
	/*background: rgba(10, 14, 39, 0.98);*/
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	text-decoration: none; 
}

.logo img{
    height: 50px;
}

.footer-box .logo img{
    height: 60px;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	color: #0f2040;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #0f2040, #dab164);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: #dab164;
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #0f2040, #dab164);
	transform: translateX(-50%);
	box-shadow: 0 0 15px rgba(218, 177, 100, 0.6);
	border-radius: 2px;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: transform 0.3s ease;
	fill: white;
}

.search-icon:hover {
	transform: scale(1.1);
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	/*background: linear-gradient(135deg, #dab164 0%, #0f2040 100%);*/
	/*background: #fff;*/
	background-image: url('images/new/Home-Banner1.png');
	background-position: bottom right;
	background-size: 100% auto;
	background-repeat:no-repeat;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background-image:
		linear-gradient(45deg, transparent 30%, rgba(0, 255, 204, 0.1) 50%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(255, 0, 128, 0.1) 50%, transparent 70%);
	animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-20px, -20px);
	}
}

.geometric-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.shape {
	position: absolute;
	border: 2px solid rgba(0, 255, 204, 0.3);
}

.shape1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: -150px;
	transform: rotate(45deg);
	animation: float 15s ease-in-out infinite;
}

.shape2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: -100px;
	border-color: rgba(255, 0, 128, 0.3);
	animation: float 20s ease-in-out infinite reverse;
}

.shape3 {
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 10%;
	border-color: rgba(0, 204, 255, 0.3);
	transform: rotate(30deg);
	animation: float 18s ease-in-out infinite;
}

.shape4 {
	width: 250px;
	height: 250px;
	top: 15%;
	right: 5%;
	border-color: rgba(255, 0, 128, 0.25);
	transform: rotate(45deg);
	animation: float 16s ease-in-out infinite;
}

.shape5 {
	width: 180px;
	height: 180px;
	top: 55%;
	right: 12%;
	border-color: rgba(0, 255, 204, 0.25);
	transform: rotate(-30deg);
	animation: float 22s ease-in-out infinite reverse;
}

.shape6 {
	width: 120px;
	height: 120px;
	bottom: 15%;
	right: 8%;
	border-color: rgba(0, 204, 255, 0.25);
	transform: rotate(20deg);
	animation: float 19s ease-in-out infinite;
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text {
	animation: slideInLeft 1s ease-out;
	padding-top: 60px;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero-text h1 {
	font-size: 5.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
	color: #ffffff;
}

.line {
    content: '';
    width: 20%;
    height: 3px;
    background: linear-gradient(90deg, #0f2040, #dab164);
    transform: translateX(0%);
    box-shadow: 0 0 15px rgba(218, 177, 100, 0.6);
    border-radius: 2px;
}

.hero-text p {
	font-size: 18px;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 40px;
	max-width: 500px;
}

.cta-button {
	display: inline-block;
	padding: 8px 20px;
	background: #dab164;
	color: #0f2040;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: none;
	border: none;
	cursor: pointer;
	letter-spacing: 0.5px;
	font-family: Plus Jakarta Sans, system-ui, sans-serif;
}

.cta-button:hover {
	background: #0f2040;
	color: #dab164;
	transform: none;
	box-shadow: none;
}

.hero-visual {
	position: relative;
	animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.city-container {
	position: relative;
	width: 100%;
	height: 400px;
	perspective: 1000px;
}

.building {
	position: absolute;
	background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
	border: 1px solid rgba(0, 255, 204, 0.2);
	box-shadow:
		0 0 20px rgba(0, 255, 204, 0.1),
		inset 0 0 20px rgba(0, 255, 204, 0.05);
	overflow: hidden;
}

/* Building fill effect */
.building-fill {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	animation: pulse 3s ease-in-out infinite;
}

.building1 {
	width: 60px;
	height: 250px;
	bottom: 0;
	left: 20%;
}

.building1 .building-fill {
	height: 45%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 204, 0.6) 100%);
}

.building2 {
	width: 80px;
	height: 320px;
	bottom: 0;
	left: 35%;
}

.building2 .building-fill {
	height: 60%;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 128, 0.6) 100%);
	animation-delay: 0.5s;
}

.building3 {
	width: 100px;
	height: 280px;
	bottom: 0;
	right: 25%;
}

.building3 .building-fill {
	height: 35%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 204, 255, 0.6) 100%);
	animation-delay: 1s;
}

.building4 {
	width: 70px;
	height: 200px;
	bottom: 0;
	right: 10%;
}

.building4 .building-fill {
	height: 50%;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 107, 0.6) 100%);
	animation-delay: 1.5s;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.6;
		transform: translateY(0);
	}

	50% {
		opacity: 1;
		transform: translateY(-5px);
	}
}

/* Building windows */
.building-windows {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: repeating-linear-gradient(0deg,
			transparent,
			transparent 8px,
			rgba(255, 255, 255, 0.05) 8px,
			rgba(255, 255, 255, 0.05) 10px);
	opacity: 0.8;
}

.neon-line {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, transparent, #0f2040, transparent);
	animation: scan 3s linear infinite;
}

.neon-line1 {
	width: 100px;
	top: 30%;
	left: 10%;
}

.neon-line2 {
	width: 150px;
	top: 50%;
	right: 15%;
	animation-delay: 1s;
}

@keyframes scan {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(200%);
		opacity: 0;
	}
}

/* Dashboard Section */
.dashboard-section {
	padding: 80px 50px;
	/*background: linear-gradient(180deg, #ffffff 0%, #0f2040 100%);*/
	background: #fff;
}

.dashboard-container {
	max-width: 1400px;
	margin: 0 auto;
}

.our-expert{
    display: flex;
    justify-content: space-between;
}

.our-expert .section-title{
    font-size: 34px;
}

.section-title {
	font-size: 42px;
	margin-bottom: 40px;
	/*color: #0f2040;*/
	background: linear-gradient(135deg, #0f2040 0%, #0f2040 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	max-width: 600px;
}

.section-para{
    max-width: 500px;
    color: #0f2040;
    font-size: 18px;
}

/* Stats Cards */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.03);
	/*border: 1px solid rgba(255, 255, 255, 0.1);*/
	border: 1px solid rgba(6, 39, 108, 0.3);
	border-radius: 20px;
	padding: 50px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	background: rgba(106, 107, 109, 0.1);
	border-color: rgba(6, 39, 108, 0.6);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #0f2040, transparent);
	animation: scan 3s linear infinite;
}

* a{
    text-decoration:none !important;
}

.stat-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	
}

.stat-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0f2040, #0f2040);
	/* Remove border-radius here to allow card-specific override */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-right: 14px;
}
/* ABSOLUTE FINAL: Always circular icon for highlight-card */
.stat-card.highlight-card .stat-icon,
.stat-card.highlight-card:hover .stat-icon,
.stat-card.highlight-card:focus .stat-icon,
.stat-card.highlight-card:active .stat-icon {
	border-radius: 50% !important;
}

.stat-icon i {
    color: #dab164;
}

.stat-title {
	font-size: 14px;
	color: #6A6B6D;
	font-weight: 500;
}

/* Service List Cards */
.service-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
	max-width: none;
	margin: 0 0 60px;
}

.service-list-card {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(6, 39, 108, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-list-card:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 39, 108, 0.6);
}

.service-list-badge {
    background: #0f2040;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 28px;
    min-width: 120px;
    text-align: center;
}

.service-list-number {
    font-size: 34px;
    font-weight: 700;
    color: #dab164;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.service-list-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.65);
    display: block;
}

.service-list-content {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-list-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f2040;
    margin-bottom: 10px;
}

.service-list-desc {
    font-size: 15px;
    color: #6A6B6D;
    line-height: 1.75;
    margin: 0;
}

.service-list-link {
	margin-top: 16px;
	align-self: center;
	margin-left: auto;
	margin-right: auto;
	padding: 9px 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.6px;
	border: 1px solid transparent;
}

.service-list-link:hover {
	background: #0f2040;
	color: #dab164;
	border-color: #dab164;
}

/* Mission & Core Values */
.mission-grid {
    display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
    align-items: start;
    margin-top: 40px;
	
}
.mission-card,
.core-values-card {
	padding: 40px;
	background: #11284d;
	border-radius: 16px;
	border: 1px solid rgba(218, 177, 100, 0.22);
	box-shadow: none;
}

.mission-heading {
    font-size: 18px;
    font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.5px;
	text-transform: uppercase;
    margin-bottom: 16px;
}

.mission-text {
    font-size: 15px;
	color: rgba(229, 236, 247, 0.92);
    line-height: 1.75;
    margin-bottom: 30px;
}

.mission-chevrons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mission-chevrons span {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-right: 3px solid;
    border-bottom: 3px solid;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.mission-chevrons span:nth-child(odd) {
    border-color: #dab164;
    opacity: 0.75;
}

.mission-chevrons span:nth-child(even) {
	border-color: #8fa8cd;
	opacity: 0.55;
}

.core-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
	align-items: stretch;
}

.core-values-list li {
	font-size: 15px;
	color: #f4f7ff;
	line-height: 1.35;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid rgba(218, 177, 100, 0.5);
	border-radius: 999px;
	padding: 10px 22px;
	background: rgba(9, 26, 56, 0.55);
}

@media (max-width: 1024px) {
	.core-values-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.core-values-list {
		grid-template-columns: 1fr;
	}
}

.core-values-list li::before {
	content: none;
}
.pillars-heading {
    font-size: 15px;
    font-weight: 700;
    color: #dab164;
    margin-bottom: 10px;
}

.pillars-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pillars-list li {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
}

.pillars-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
	background: #dab164;
	color: #0f2040;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    text-align: center;
}

.stat-title.headline {
	font-size: 14px;
	color: #dab164;
	text-transform:uppercase;
	letter-spacing: 0.8px;
	font-weight: 600;
}

.stat-value {
	font-size: 22px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 10px;
	background: linear-gradient(135deg, #0f2040 0%, #0f2040 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-description {
	font-size: 13px;
	color: #707070;
	line-height: 1.5;
}

.stat-chart {
	margin-top: 20px;
	height: 60px;
	position: relative;
}

.mini-chart {
	width: 100%;
	height: 100%;
}

/* Analytics Section */
.analytics-section {
	padding: 80px 50px;
	background: #0f2040;
}

/* Chart Cards */
.charts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.chart-card {
	/*background: rgba(255, 255, 255, 0.03);*/
	/*border: 1px solid rgba(255, 255, 255, 0.1);*/
	/*border-radius: 20px;*/
	padding: 30px;
	position: relative;
	min-height: 400px;
}

.chart-card .section-title{
    color: #fff;
    background: unset;
    -webkit-text-fill-color: unset;
}

.chart-card .about-para{
    font-size: 17px;
    line-height: 1.5;
    color: #fff;
    padding: 15px 0;
}

/*.chart-card:hover {*/
/*	background: rgba(255, 255, 255, 0.05);*/
/*}*/

.chart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.chart-title {
	font-size: 20px;
	font-weight: 600;
}

.chart-options {
	display: flex;
	gap: 10px;
}

.chart-option {
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-option:hover,
.chart-option.active {
	background: rgba(0, 255, 204, 0.1);
	border-color: rgba(0, 255, 204, 0.3);
	color: #0f2040;
}

.chart-container {
	position: relative;
	height: 300px;
}

/* Bar Chart */
.bar-chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	height: 100%;
	padding: 20px 0;
}

.bar {
	width: 30px;
	background: linear-gradient(180deg, #0f2040 0%, #00ccff 100%);
	border-radius: 5px 5px 0 0;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.bar:hover {
	transform: scaleY(1.05);
	filter: brightness(1.2);
}

.bar-label {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	color: #707070;
}

.bar-value {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	font-weight: 600;
	color: #0f2040;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bar:hover .bar-value {
	opacity: 1;
}

/* Line Chart */
.line-chart {
	position: relative;
	width: 100%;
	height: 100%;
}

.line-chart-svg {
	width: 100%;
	height: 100%;
}

.chart-grid-line {
	stroke: rgba(255, 255, 255, 0.05);
	stroke-width: 1;
}

.chart-line {
	fill: none;
	stroke: #0f2040;
	stroke-width: 2;
	filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
}

.chart-area {
	fill: url(#gradient);
	opacity: 0.3;
}

.chart-dot {
	fill: #0f2040;
	stroke: #0a0e27;
	stroke-width: 2;
	r: 4;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-dot:hover {
	r: 6;
	filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.8));
}

/* Metrics Grid */
.metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.metric-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.metric-item:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 255, 204, 0.3);
}

.metric-value {
	font-size: 24px;
	font-weight: 700;
	color: #0f2040;
	margin-bottom: 5px;
}

.metric-label {
	font-size: 12px;
	color: #a0a0a0;
}

/* Reports Section */
.reports-section {
	padding: 80px 50px;
    background: #0f2040;
	position: relative;
}



/* Info Cards Section */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.info-card {
	/*background: rgba(255, 255, 255, 0.03);*/
	/*border: 1px solid rgba(255, 255, 255, 0.1);*/
	border-radius: 20px;
	padding: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.info-card h3{
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #dab164;
    letter-spacing:1px;
}

.info-card p{
    color: #fff ;
    font-size: 15px;
    line-height: 1.4;
}

.info-card ol{
    list-style-type: none;
}

.info-card ol li{
    padding:5px;
    font-size: 16px;
}

.info-card ol li a{
    color: #fff;
}

.info-card ol li a:hover{
    color: #fae1a1;
}

.info-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #0f2040 0%, #00ccff 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.info-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.info-value {
	font-size: 28px;
	font-weight: 700;
	color: #0f2040;
	margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
	padding: 80px 50px;
	/*background: linear-gradient(180deg, #0f1329 0%, #0a0e27 100%);*/
	background: #fff;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.contact-form {
	background: rgba(6, 39, 108, 0.03);
	border: 1px solid rgba(6, 39, 108, 0.1);
	border-radius: 20px;
	padding: 40px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: rgb(106, 107, 109);
	font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 15px 20px;
	background: rgba(6, 39, 108, 0.05);
	border: 1px solid rgba(6, 39, 108, 0.1);
	border-radius: 10px;
	color: #0f2040;
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: rgba(250, 225, 161, 0.8);
	background: rgba(6, 39, 108, 0.08);
	box-shadow: 0 0 20px rgba(250, 225, 161, 0.3);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}


.contact-info {
	padding: 20px 0;
}

.contact-info h3 {
	font-size: 24px;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #ffffff 0%, #0f2040 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.contact-item:hover {
	transform: translateX(5px);
	border-color: rgba(6, 39, 108, 0.3);
	background: rgba(6, 39, 108, 0.1);
}

.contact-info .section-title{
    margin-bottom: 15px !important;
}

.contact-info .contact-para{
    font-size: 17px;
    line-height: 1.5;
    color: #6A6B6D;
    margin-bottom: 25px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	/*background: linear-gradient(135deg, #0f2040, #fae1a1);*/
	background: #0f2040;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.contact-icon i{
    color: #dab164;
}

.contact-details h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: #0f2040;
}

.contact-details p {
	font-size: 15px;
	line-height: 1.6px;
	color: #a0a0a0;
	line-height: 1.4;
}

/* Footer */
footer {
	padding: 40px 50px;
	background: #0f2040;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.copyright {
	font-size: 14px;
	color: #707070;
}

.copyright a {
	color: #707070;
	text-decoration: none;
	transition: color 0.3s ease;
}

.copyright a:hover {
	color: #0f2040;
	text-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
}

.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.footer-nav a {
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #dab164;
}

.footer-nav span {
	color: rgba(255,255,255,0.6);
}

/* Who We Are */
.who-we-are-card {
    border: 1px solid rgba(6, 39, 108, 0.2);
    border-radius: 16px;
    padding: 50px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.who-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.who-para {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.8;
}

/* Cleaning Service Cards */
.clean-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.clean-card {
    border: 1px solid rgba(6, 39, 108, 0.2);
    border-radius: 16px;
    padding: 36px 36px 30px;
}

.clean-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.clean-icon {
    width: 44px;
    height: 44px;
	background: #0f2040;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dab164;
    font-size: 18px;
    flex-shrink: 0;
}

.clean-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f2040;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clean-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.clean-items p {
    font-size: 14px;
    color: #3a3a3a;
    line-height: 1.5;
    margin: 0 0 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.clean-items p i {
    color: #dab164;
    margin-top: 2px;
    flex-shrink: 0;
}

/* How We Work */
.how-we-work-inner {
    background: #0f2040;
    border-radius: 16px;
    padding: 60px;
    text-align: center;
}

.hww-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.hww-intro {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 40px;
}

.hww-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.hww-card {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 28px 30px;
}

.hww-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.hww-card-text {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
}

/* Why Austridge Group */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 30px;
}

.why-heading {
	font-size: 42px;
    font-weight: 700;
    color: #0f2040;
	line-height: 1.12;
	margin-bottom: 18px;
}

.why-intro {
	font-size: 18px;
    color: #0f2040;
	line-height: 1.7;
    margin-bottom: 24px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
	gap: 12px;
	font-size: 17px;
    color: #0f2040;
	line-height: 1.65;
}

.why-list li span {
	flex: 1;
}

.why-list li i {
    color: #dab164;
	font-size: 16px;
	width: 20px;
	min-width: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	margin-top: 4px;
    flex-shrink: 0;
}

.why-tagline {
    border-left: 4px solid #dab164;
    background: rgba(218, 177, 100, 0.1);
    padding: 16px 24px;
    border-radius: 0 8px 8px 0;
}

.why-tagline p {
	font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #0f2040;
    margin: 0;
}

/* Core Values Section */
.core-values-section-card {
	border: none;
    border-radius: 16px;
    padding: 50px 60px;
    text-align: center;
}

.core-values-section-heading {
	font-size: 42px;
    font-weight: 700;
	line-height: 1.15;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #0f2040 0%, #0f2040 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.core-values-section-intro {
    font-size: 15px;
    color: #6A6B6D;
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto 36px;
}

.core-values-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 22px;
    text-align: left;
}

.cv-card {
	background: #ffffff;
	border: 1px solid rgba(6, 39, 108, 0.18);
	border-radius: 18px;
	padding: 24px 28px 22px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.cv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #0f2040 0%, #dab164 100%);
}

.cv-card:hover {
	transform: translateY(-3px);
	border-color: rgba(6, 39, 108, 0.6);
	box-shadow: 0 10px 22px rgba(6, 39, 108, 0.08);
}

.cv-card:hover .stat-icon {
    background: linear-gradient(135deg, #dab164, #dab164);
}

.cv-card:hover .stat-icon i {
	color: #0f2040;
}

.cv-card-title {
	font-size: 16px;
	font-weight: 700;
	color: #0f2040;
	letter-spacing: 0.4px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.cv-num {
    color: #dab164;
    font-weight: 700;
    margin-right: 4px;
}

.cv-card-text {
    font-size: 14px;
	color: #4f5f76;
	line-height: 1.65;
    margin: 0;
}

.mission-quote {
    border-left: 4px solid #0f2040;
    background: rgba(6, 39, 108, 0.05);
    padding: 16px 20px;
    margin: 0 0 20px;
    font-style: italic;
    font-size: 14px;
    color: #0f2040;
    line-height: 1.75;
    border-radius: 0 8px 8px 0;
}

.mission-commit-text {
    font-size: 15px;
    color: #0f2040;
    margin-bottom: 12px;
}

.mission-commit-list {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mission-commit-list li {
    font-size: 14px;
    color: #0f2040;
    line-height: 1.6;
}

/* Mobile Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #0f2040;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links-mobile {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: rgba(10, 14, 39, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	flex-direction: column;
	gap: 0;
	list-style: none;
	z-index: 1000;
	padding: 20px;
}

.nav-links-mobile.active {
	display: flex;
}

.nav-links-mobile a {
	color: #ffffff;
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

.nav-links-mobile a:hover {
	border-left-color: #dab164;
	background: rgba(255, 107, 107, 0.1);
	color: #dab164;
}

.nav-links-mobile a.active {
	border-left-color: #0f2040;
	background: rgba(0, 255, 204, 0.1);
	color: #0f2040;
}

.nav-links-mobile .cta-button {
	padding: 8px 20px;
	background: #dab164;
	color: #0f2040;
	border-left: none;
	display: inline-block;
	width: auto;
}

.nav-links-mobile .cta-button:hover {
	background: #0f2040;
	color: #dab164;
	border-left: none;
}

@media (max-width: 1200px) {
	.charts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 968px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 48px;
	}

	.hero-text {
		padding-top: 160px;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 15px 20px;
	}

	.hero-content {
		padding: 24px 20px;
		gap: 24px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
	}

	.hero-text h1 {
		font-size: 36px;
	}

	.hero-text {
		padding-top: 120px;
	}

	.dashboard-section,
	.analytics-section,
	.reports-section,
	.contact-section {
		padding: 40px 20px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.service-list-card {
		flex-direction: column;
	}

	.service-list {
		grid-template-columns: 1fr;
	}

	.service-list-badge {
		flex-direction: row;
		gap: 8px;
		justify-content: flex-start;
		padding: 14px 20px;
		min-width: auto;
	}

	.service-list-number {
		font-size: 26px;
		margin-bottom: 0;
	}

	.service-list-content {
		padding: 22px 20px;
	}

	.workforce-card-redesign {
		min-height: auto;
		padding: 20px;
	}

	.workforce-card-redesign .workforce-title {
		font-size: 22px;
	}

	.workforce-card-redesign .workforce-kicker {
		font-size: 13px;
	}

	.workforce-card-redesign .workforce-title:not(.workforce-kicker) {
		min-height: auto;
		max-width: 100%;
	}

	.workforce-card-redesign .workforce-desc {
		font-size: 16px;
		line-height: 1.6;
		max-width: 100%;
		display: block;
		overflow: visible;
	}
}

@media (max-width: 1024px) and (min-width: 769px) {
	.service-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
    .hero-text h1 {
		font-size: 34px;
		line-height: 1.2;
    }
    .hero {
        background-position: bottom right;
        background-size: auto 100%;
    }
    
	.hero-text {
		padding-top: 0px;
	}
	
	.hero-text p {
	    margin: 30px auto;
	}
	
	.contact-details p{
	    font-size:12px;
	}
	
	.our-expert{
	    display: contents;
	}
	
	.section-title{
	    margin-bottom: 20px;
	    max-width: unset;
	    font-size: 32px;
	}
	
	.stat-value{
	    font-size: 18.5px;
	}
	
	.section-para {
        max-width: unset;
        margin-bottom: 20px;
        font-size: 16.5px;
	}
	
	
}