body{
    background-color: #f7f7f5;
}
.nav-menu a {
			color: #fff;
			}
			header.sticky .nav-menu a {
			color: #010000;
			}
			.banner-stats {
			position: absolute;
			bottom: 60px;
			display: flex;
			gap: 20px;
			z-index: 2;
			right: 7%;
			}
			.main-navbar:hover  .nav-menu a {
			color: #010000;
			}
			.main-navbar:hover  .nav-menu a:hover {
			color: #7039c2;
			}
			.right-panel a {
			color: rgb(82, 43, 145) !important;
			}
			.right-panel a:hover {
			color: rgb(50, 181, 99) !important;
			}
			.discipline-section{
			position: relative;
			}
			.discipline-section-inner{
			position: relative;
			}
			.discipline-container {
			display: grid;
			grid-template-columns: 0.9fr 1.4fr;
			gap: 60px;
			align-items: center;
			padding-top: 30px;
			}
			.discipline-left {
			display: flex;
			flex-direction: column;
			gap: 40px;
			}
			.illustration-container img {
			width: 100%;
			max-width: 500px;
			margin-bottom: -8px;
			}
			.renewable-illustration {
			width: 100%;
			height: auto;
			}
			.discipline-right {
			padding-left: 20px;
			}
			/* Responsive */
			@media (max-width: 968px) {
			.discipline-container {
			grid-template-columns: 1fr;
			gap: 40px;
			}
			.discipline-heading {
			font-size: 36px;
			}
			.discipline-right {
			padding-left: 0;
			}
			}
			.filter-blocks {
			max-width: 1250px;
			width: 100%;
			position: relative;
			margin: 0px auto;
			}
			.filter-form {
			display: flex;
			gap: 16px;
			align-items: center;
			flex-wrap: wrap;
			}
			.select-wrapper {
			position: relative;
			min-width: 32%;
			height: 56px;
			display: flex;
			align-items: center;
			}
			/* Skewed background shape */
			.select-wrapper::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			border-radius: 10px;
			transform: skewX(-8deg);
			z-index: 0;
			transition: all 0.3s ease;
			pointer-events: none;
			}
			/* Active/Selected state (Status) - purple */
			.select-wrapper.active::before {
			background-color: #c4b5e0;
			}
			/* Inactive state (Technology, Geography) - gray */
			.select-wrapper.inactive::before {
			background-color: #e8e8e8;
			}
			/* Hover effect for inactive */
			.select-wrapper.inactive:hover::before {
			background-color: #ddd;
			}
			/* Native select element */
			.filter-select {
			position: relative;
			z-index: 1;
			width: 100%;
			height: 100%;
			padding: 0 44px 0 24px;
			border: none;
			background: transparent;
			font-size: 20px;
			font-weight: 500;
			color: #000000;
			font-style: italic;
			cursor: pointer;
			appearance: none;
			-webkit-appearance: none;
			-moz-appearance: none;
			outline: none;
			font-family: "Montserrat", sans-serif;
			}
			/* Custom arrow */
			.select-arrow {
			position: absolute;
			right: 20px;
			top: 50%;
			transform: translateY(-50%) rotate(45deg);
			width: 10px;
			height: 10px;
			border-right: 2px solid #888;
			border-bottom: 2px solid #888;
			pointer-events: none;
			z-index: 2;
			transition: transform 0.3s ease;
			}
			.select-wrapper.active .select-arrow {
			border-color: #666;
			}
			/* Focus state */
			.filter-select:focus {
			outline: none;
			}
			/* Option styling (limited browser support) */
			.filter-select option {
			font-style: normal;
			padding: 12px;
			background: white;
			color: #333;
			}
			/* Responsive */
			.project-card.hidden {
			display: none;
			}
			.no-results {
			text-align: center;
			padding: 60px 20px;
			color: #6b7280;
			font-size: 18px;
			display: none;
			}
			.no-results.show {
			display: block;
			}
			.projects-container {
			margin: 0 auto;
			display: flex;
			flex-direction: column;
			gap: 40px;
			margin-top: 70px;
			}
			.project-card {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 24px;
			}
			/* Left side - Content */
			.project-content {
			background-color: #e8e8e8;
			border-radius: 30px;
			padding: 40px;
			position: relative;
			display: flex;
			flex-direction: column;
			gap: 40px;
			transform: skew(-4deg);
			}
			/* Status Badge */
			.status-badge {
			position: absolute;
			top: 30px;
			right: 30px;
			padding: 10px 28px;
			border-radius: 8px;
			font-size: 18px;
			font-weight: 300;
			color: white;
			text-transform: capitalize;
			transform: skewX(-8deg);
			}
			.status-badge span {
			display: inline-block;
			transform: skewX(8deg);
			}
			.status-badge.operational {
			background-color: #4caf50;
			}
			.status-badge.under-development {
			background-color: #4caf50;
			}
			/* Project Title */
			.project-title {
			font-size: 28px;
			font-weight: 700;
			color: #4a3f8c;
			text-transform: uppercase;
			margin-top: 60px;
			margin-bottom: 20px;
			letter-spacing: 0.5px;
			}
			/* Project Stats */
			.project-stats {
			display: flex;
			gap: 12px;
			flex-wrap: wrap;
			margin-top: 20px;
			}
			.stat-box {
			background-color: #c4b5e0;
			padding: 14px 18px;
			border-radius: 8px;
			display: flex;
			align-items: center;
			gap: 12px;
			transform: skewX(-8deg);
			min-width: 180px;
			}
			.stat-box-content {
			transform: skewX(8deg);
			display: flex;
			align-items: center;
			gap: 10px;
			}
			.stat-icon {
			width: 34px;
			height: 32px;
			display: flex;
			align-items: center;
			justify-content: center;
			}
			.stat-icon img {
			width: 30px;
			}
			.stat-text {
			font-size: 16px;
			font-weight: 500;
			color: #000000;
			font-style: italic;
			}
			/* Right side - Map */
			.project-map {
			border-radius: 30px;
			position: relative;
			overflow: hidden;
			transform: skew(-4deg);
			}
			
			.project-map p{
			    width: 100%;
                height: 100%;
                position: relative;
			}
			
			.project-map p iframe {
                width: 100%;
                height: 100%;
            }
			.map-placeholder {
			width: 100%;
			height: 100%;
			position: relative;
			}
			.map-placeholder iframe {
			width: 100%;
			height: 100%;
			}
			.map-placeholder img {
			width: 100%;
			border-radius: 30px;
			}
			.project-detail-content-banner {
			position: relative;
			background-image: url(assets/images/energy-future-banner.jpg);
			background-repeat: no-repeat;
			background-size: cover;
			padding: 400px 0;
			margin-top: 80px;
			}
			.project-detail-banner-title {
			color: #fff;
			font-size: 70px;
			line-height: normal;
			text-align: center;
			font-style: italic;
			}
			/* Responsive */
			@media (max-width: 968px) {
			.project-card {
			grid-template-columns: 1fr;
			}
			.project-content {
			border-radius: 30px 30px 0 0;
			}
			.project-map {
			border-radius: 0 0 30px 30px;
			min-height: 300px;
			}
			}
			.engineer-exicution-img{
			width: 100%;
			}
			/* project detail section css */
			.project-details-container {
			margin: 0 auto;
			display: none;
			}
			.project-detail-section-block .project-details-container:not(:first-child) {
			padding-top: 0px;
			}
			/* Page Title */
			.page-title {
			font-size: 42px;
			font-weight: 600;
			color: #4a3f8c;
			margin-bottom: 10px;
			}
			/* Project Name */
			.project-name {
			font-size: 36px;
			font-weight: 700;
			color: #4caf50;
			text-transform: uppercase;
			margin-bottom: 30px;
			letter-spacing: 1px;
			}
			/* Top Row Layout */
			.top-row {
			display: grid;
			grid-template-columns: 1.2fr 1.2fr 0.8fr;
			gap: 20px;
			margin-bottom: 20px;
			align-items: stretch;
			}
			/* Card Styles */
			.card {
			border-radius: 20px;
			padding: 28px 30px;
			display: flex;
			flex-direction: column;
			transform: skew(-3deg);
			}
			.purple-sm {
			transform: skew(-1deg);
			}
			.card-purple {
			background-color: #c4b5e0;
			}
			.card-light {
			background-color: #e8e8e8;
			}
			.card-green {
			background-color: #38b768;
			color: white;
			}
			/* Right Column - Stacked Cards */
			.right-column {
			display: flex;
			flex-direction: column;
			gap: 20px;
			transform: skew(-3deg);
			}
			.right-column .card-light {
			transform: skew(-0.5deg);
			}
			/* Card Content Styles */
			.card-label {
			font-size: 20px;
			font-weight: 700;
			text-transform: uppercase;
			margin-bottom: 12px;
			color: #532e8a;
			font-style: italic;
			}
			.card-green .card-label {
			color: rgba(255,255,255,0.9);
			}
			.card-green .card-text {
			color: rgba(255,255,255,0.95);
			}
			/* Capacity Card Specific */
			.capacity-header {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			margin-bottom: 10px;
			}
			.capacity-title {
			font-size: 32px;
			font-weight: 700;
			color: #000000;
			}
			.capacity-icon {
			position: relative;
			}
			.capacity-icon img {
			width: 50px;
			}
			.capacity-value {
			font-size: 58px;
			font-weight: 700;
			color: #532e8a;
			line-height: 1;
			margin-bottom: 8px;
			}
			.capacity-subtext {
			font-size: 20px;
			color: #000000;
			font-weight: 600;
			font-style: italic;
			}
			/* Location Card Specific */
			.location-header {
			display: flex;
			justify-content: flex-end;
			align-items: flex-start;
			}
			.location-icon {
			position: relative;
			}
			.info-block {
			margin-bottom: 16px;
			}
			.info-block:last-child {
			margin-bottom: 0;
			}
			.info-label {
			font-size: 26px;
			font-weight: 700;
			color: #000000;
			margin-bottom: 6px;
			display: block;
			font-style: italic;
			line-height: normal;
			}
			.info-value {
			font-size: 26px;
			font-weight: 700;
			color: #38b768;
			line-height: 1.4;
			font-style: italic;
			}
			.tech-icon {
			align-self: flex-end;
			}
			/* Bottom Row - Image and Operations */
			.bottom-row {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 20px;
			margin-bottom: 20px;
			}
			.card-image {
			padding: 0;
			overflow: hidden;
			min-height: 280px;
			border-radius: 20px;
			transform: skew(-3deg);
			}
			.project-image {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
			}
			/* Stats Grid */
			.stats-grid {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 20px;
			}
			.stat-card {
			border-radius: 16px;
			padding: 24px;
			display: flex;
			flex-direction: column;
			min-height: 160px;
			transform: skew(-3deg);
			}
			.stat-header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 0px;
			}
			.stat-label-small {
			font-size: 24px;
			font-weight: 700;
			text-transform: uppercase;
			color: #532e8a;
			font-style: italic;
			}
			.stat-value-oprational {
			color: #38b768;
			font-size: 44px;
			font-weight: 600;
			line-height: normal;
			font-style: italic;
			margin-bottom: 14px;
			}
			.stat-card-purple .stat-label-small {
			color: #532e8a;
			}
			.stat-label-status-small {
			font-size: 24px;
			font-weight: 700;
			text-transform: uppercase;
			color: #000000;
			font-style: italic;
			margin-bottom: 8px;
			}
			.stat-icon-small {
			position: relative;
			}
			.stat-card-purple .stat-icon-small {
			stroke: #4a3f8c;
			}
			.stat-title {
			font-size: 34px;
			font-weight: 700;
			color: #000000;
			margin-bottom: 8px;
			line-height: 1.2;
			font-style: italic;
			}
			.card-couterpart{
			font-size: 28px;
			font-weight: 700;
			color: #000000;
			margin-bottom: 8px;
			line-height: 1.2;
			font-style: italic;
			}
			.stat-value {
			font-size: 58px;
			font-weight: 700;
			color: #532e8a;
			margin-top: auto;
			line-height: 1;
			font-style: italic;
			margin-top: 10px;
			}
			.stat-unit {
			font-size: 15px;
			font-weight: 600;
			color: #4caf50;
			text-transform: uppercase;
			margin-top: 4px;
			text-align: right;
			width: 82%;
			}
			.stat-card-green .stat-value {
			color: #4caf50;
			}
			/* Responsive */
			@media (max-width: 1024px) {
			.top-row {
			grid-template-columns: 1fr 1fr;
			}
			.right-column {
			grid-column: span 2;
			flex-direction: row;
			}
			.right-column .card {
			flex: 1;
			}
			.bottom-row {
			grid-template-columns: 1fr;
			}
			.stats-grid {
			grid-template-columns: repeat(2, 1fr);
			}
			}
			/* end Project detail section */
			@media (max-width: 767px) {
			.page-title {
			font-size: 32px;
			}
			.project-name {
			font-size: 26px;
			}
			.top-row {
			grid-template-columns: 1fr;
			}
			.right-column {
			grid-column: span 1;
			flex-direction: column;
			}
			.stats-grid {
			grid-template-columns: 1fr;
			}
			.capacity-value {
			font-size: 36px;
			}
			.project-detail-banner-title {
			font-size: 26px;
			}
			.project-detail-content-banner {
			padding: 62px 0;
			margin-top: 56px;
			}
			.discipline-section {
			padding-bottom: 54px;
			}
			.filter-select {
			font-size: 16px;
			}
			.select-wrapper {
			height: 44px;
			width: 100%;
			}
			.filter-form {
			width: 100%;
			max-width: 100%;   
			}
			.project-content {
			padding: 30px 18px;
			}
			.project-title {
			font-size: 22px;
			margin-top: 50px;
			margin-bottom: 0px;
			}
			.status-badge {
			top: 20px;
			right: 20px;
			padding: 8px 20px;
			font-size: 12px;
			}
			.stat-box {
			padding: 12px 18px;
			min-width: auto;
			flex: 1;
			}
			.stat-text {
			font-size: 15px;
			}
			.project-content {
			gap: 12px;
			transform: skew(-1.5deg);
			border-radius: 30px;
			}
			.stat-icon img {
			width: 24px;
			}
			.project-map {
			transform: skew(-2deg);
			min-height: 260px;
			}
			.projects-container{
			gap: 25px;
			}
			.card {
			padding: 16px 20px;
			transform: skew(-1.5deg);
			}
			.card-label {
			font-size: 16px;
			}
			.capacity-title {
			font-size: 22px;
			}
			.capacity-subtext {
			font-size: 16px;
			}
			.purple-sm {
			transform: skew(-0.5deg);
			}
			.info-label {
			font-size: 22px;
			}
			.info-value {
			font-size: 20px;
			}
			.right-column {
			transform: skew(-1.5deg);
			}
			.card-image {
			transform: skew(-1.5deg);
			}
			.stat-card {
			padding: 18px;
			transform: skew(-1.5deg);
			}
			.stat-label-small {
			font-size: 18px;
			}
			.stat-title {
			font-size: 22px;
			}
			.stat-value {
			font-size: 34px;
			}
			.card-couterpart {
			font-size: 20px;
			}
			.stat-label-status-small {
			font-size: 18px;
			}
			.stat-value-oprational {
			font-size: 26px;
			}
			.project-detail-section-block .project-details-container:not(:first-child) {     padding-top: 0px; }
			}
			@media only screen and (min-width: 768px) and (max-width: 1199px)  {
			.project-detail-banner-title {
			font-size: 34px;
			}
			.project-detail-content-banner{
			padding: 140px 0;
			margin-top: 40px;
			}
			.discipline-section {
			padding-bottom: 48px;
			}
			.filter-form {
			width: 100%;
			}
			.select-wrapper {
			width: 31%;
			min-width: auto;
			}
			.filter-select {
			font-size: 16px;
			}
			.status-badge {
			padding: 8px 18px;
			font-size: 16px;
			}
			.project-title {
			font-size: 22px;
			margin-bottom: 4px;
			}
			.project-content {
			padding: 10px;
			gap: 18px; 
			}
			.stat-icon img {
			width: 24px;
			}
			.stat-box {
			padding: 10px 9px;
			}
			.stat-text {
			font-size: 16px;
			}
			.project-content {
			border-radius: 30px;
			}
			.project-map {
			transform: skew(-2deg);
			}
			.project-content {
			transform: skew(-2deg);
			}
			.card-label {
			font-size: 16px;
			}
			.capacity-title {
			font-size: 26px;
			}
			.capacity-value {
			font-size: 40px;
			}
			.capacity-subtext {
			font-size: 16px;
			}
			.info-label {
			font-size: 20px;
			}
			.info-value {
			font-size: 18px;
			}
			.right-column {
			transform: skew(-1deg);
			}
			.stat-label-small {
			font-size: 18px;
			}
			.stat-title {
			font-size: 24px;
			}
			.stat-value {
			font-size: 38px;
			}
			.card-couterpart {
			font-size: 22px;
			}
			.stat-value-oprational {
			font-size: 28px;
			}
			.capacity-value {
			font-size: 28px;
			}
			}
			@media only screen and (min-width: 1200px) and (max-width: 1366px)  {
			.filter-select {
			font-size: 16px;
			}
			.status-badge {
			font-size: 16px;
			}
			.project-content{
			padding: 24px;
			gap: 16px;
			}
			.stat-box{
			padding: 8px 8px;
			}
			.stat-text {
			font-size: 14px;
			}
			.stat-icon img {
			width: 24px;
			}
			.project-title {
			font-size: 24px;
			margin-top: 58px;
			margin-bottom: 8px;
			}
			.status-badge {
			padding: 6px 18px;
			font-size: 15px;
			}
			.card-label {
			font-size: 18px;
			}
			.capacity-value {
			font-size: 26px;
			}
			.capacity-title {
			font-size: 26px;
			}
			.capacity-subtext {
			font-size: 16px;
			}
			.card {
			padding: 28px 18px;
			}
			.info-value {
			font-size: 20px;
			}
			.stat-title {
			font-size: 18px;
			}
			.stat-value {
			font-size: 43px;
			}
			.card-couterpart {
			font-size: 18px;
			}
			.stat-value-oprational {
			font-size: 24px;
			}
			.stat-label-status-small {
			font-size: 18px;
			}
			.project-detail-banner-title {
			font-size: 50px;
			}
			.project-detail-content-banner{
			padding: 218px 0;
			}
			}
			@media only screen and (min-width: 1367px) and (max-width: 1440px)  {
			.filter-select {
			font-size: 17px;
			}
			.project-content {
			padding: 30px;
			gap: 18px;
			}
			.status-badge {
			padding: 8px 22px;
			font-size: 16px;
			}
			.project-title {
			font-size: 24px;
			margin-bottom: 12px;
			}
			.stat-text {
			font-size: 15px;
			}
			.stat-icon img {
			width: 26px;
			}
			.stat-box {
			padding: 10px 14px;
			}
			.project-stats{
			margin-top: 18px;
			}
			.card-label {
			font-size: 18px;
			}
			.card {
			padding: 24px 22px;
			}
			.capacity-title {
			font-size: 26px;
			}
			.capacity-value {
			font-size: 44px;
			}
			.capacity-subtext {
			font-size: 17px;
			}
			.info-label {
			font-size: 22px;
			}
			.info-value {
			font-size: 22px;
			}
			.stat-title {
			font-size: 24px;
			}
			.stat-value {
			font-size: 40px;
			}
			.card-couterpart {
			font-size: 22px;
			}
			.stat-label-status-small {
			font-size: 20px;
			}
			.stat-value-oprational {
			font-size: 32px;
			}
			.project-detail-banner-title {
			font-size: 54px;
			}
			.project-detail-content-banner {
			padding: 254px 0;
			}
			.capacity-value {
			font-size: 34px;
			}
			}
			@media only screen and (min-width: 1441px) and (max-width: 1680px)  {
			.filter-select {
			font-size: 18px;
			}
			.status-badge {
			padding: 10px 22px;
			font-size: 16px;
			}
			.project-content {
			padding: 34px;
			gap: 28px;
			}
			.project-title {
			font-size: 26px;
			margin-bottom: 10px;
			}
			.stat-icon img {
			width: 26px;
			}
			.stat-box {
			padding: 12px 16px;
			}
			.stat-text {
			font-size: 15px;
			}
			.card-label {
			font-size: 18px;
			}
			.capacity-title {
			font-size: 28px;
			}
			.capacity-value {
			font-size: 40px;
			}
			.capacity-subtext {
			font-size: 17px;
			}
			.info-label {
			font-size: 22px;
			}
			.info-value {
			font-size: 20px;
			}
			.stat-title {
			font-size: 25px;
			}
			.stat-value {
			font-size: 46px;
			}
			.card-couterpart {
			font-size: 24px;
			}
			.stat-value-oprational {
			font-size: 30px;
			}
			.stat-label-status-small {
			font-size: 22px;
			}
			.project-detail-banner-title {
			font-size: 60px;
			}
			.project-detail-content-banner {
			padding: 274px 0;
			}
			}