/*-------------------------------- Home Page -------------------------------------------*/


.img-fluid {
	margin-top: 30px;
	width: 700px !important;
	height: auto !important;
}


.project-item {
  position: relative;
  overflow: hidden; /* Recommended to keep the badge within the item's bounds */
}

.ongoing-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ffc107; /* A yellow background color */
  color: #000; /* Black text color */
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  z-index: 10; /* Ensures the badge is on top of the image */
  text-transform: uppercase;
}



/*--------------------------------------------------------------
# Home Page Gallery Section
--------------------------------------------------------------*/
.solar_gallery_section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f9f9f9; /* A light background to separate it from other sections */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px; /* Fixed height for a uniform grid */
    object-fit: cover; /* Ensures image covers the area without distortion */
    transition: transform 0.4s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient matching the yellow from your theme */
    background: linear-gradient(to top, rgba(255, 180, 0, 0.95), rgba(255, 204, 0, 0.8)); 
    color: #011933; /* Dark blue from your theme for text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0 15px;
    color: #011933;
}




/* WhatsApp Floating Icon Styles */
.whatsapp-icon {
  display: inline-block;
  background-color: #25D366; /* Official WhatsApp Green */
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  /* This positions it 15px above the go-to-top button */
  bottom: 95px; 
  right: 30px;
  transition: all .4s;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon:hover {
    background-color: #128C7E; /* Darker green on hover */
    transform: scale(1.1);
}

.whatsapp-icon i {
  color: #FFF;
  font-size: 28px;
  line-height: 50px; /* This vertically centers the icon */
}







/* --- Styling for Key Services Overview --- */
.solar_services_overview {
	margin-top: 40px;
}

.solar_services_overview ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 25px;
}

.solar_services_overview ul li {
	font-size: 15px;
	font-weight: 500;
	color: #333;
	display: flex;
	align-items: center;
}

.solar_services_overview ul li i {
	color: #0a0145;
	font-size: 18px;
	margin-right: 8px;
	width: 30px;
	text-align: center;
}


/* --- Styling for Client Logos Section --- */
/* .client_logos_section {
			margin-top: 40px;
			border-top: 1px solid #e0e0e0;
			padding-top: 25px;
		}

		.client_logos_section h5 {
			font-size: 14px;
			font-weight: 600;
			color: #6c757d;
			text-transform: uppercase;
			letter-spacing: 1px;
			margin-bottom: 20px;
		}

		.client_logo_wrapper {
			display: flex;
			align-items: center;
			flex-wrap: wrap;
			gap: 30px;
		}

		.client_logo_wrapper img {
			max-height: 35px;
			width: auto;
			opacity: 0.6;
			transition: opacity 0.3s ease;
		}

		.client_logo_wrapper img:hover {
			opacity: 1;
		} */





/* Services Section */
.solar_Serivces_detail {
	padding: 60px 0;
	text-align: center;
}

.solar_center {
	color: #f39c12;
	font-size: 18px;
	font-weight: 600;
}

.text_span {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 40px;
}

.solar_Serivces {
	padding: 30px;
	border: 1px solid #eee;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
}

.solar_Serivces:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.solar_Serivces h3 a {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
}

.solar_Serivces p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

/* Services Section */




/* Projects/Portfolio Section */
/* Styling for Projects/Portfolio Section */
.solar_projects_section {
	padding: 80px 0;
}

/* .solar_projects_section .section-subtitle {
			max-width: 600px;
			margin: 0 auto 40px auto;
			text-align: center;
			color: #6c757d;
		} */

/* Filter Buttons Styling */
/* .project-filters {
			text-align: center;
			margin-bottom: 40px;
		}

		.project-filters .filter-btn {
			background: transparent;
			border: 1px solid #ddd;
			color: #333;
			padding: 10px 20px;
			margin: 5px;
			border-radius: 5px;
			cursor: pointer;
			font-weight: 500;
			transition: all 0.3s ease;
		}

		.project-filters .filter-btn:hover {
			background-color: #7379e6;
			color: #fff;
			border-color: #7379e6;
		}

		.project-filters .filter-btn.active {
			background-color: #7379e6;
			color: #fff;
			border-color: #7379e6;
		} */

/* Project Grid Styling */
.project-grid {
	padding-top: 60px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
}

.project-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.project-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.project-item:hover img {
	transform: scale(1.1);
}

/* Overlay for project details */
.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 1;
	/* Always visible for this design */
	transition: background 0.3s ease;
}

.project-item:hover .project-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.project-overlay h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	color: #fff;
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.project-overlay .client,
.project-overlay .details {
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.4s ease, transform 0.4s ease;
	transform: translateY(20px);
	margin: 2px 0 0 0;
}

.project-item:hover .project-overlay h3,
.project-item:hover .project-overlay .client,
.project-item:hover .project-overlay .details {
	opacity: 1;
	transform: translateY(0);
}

.project-overlay .client {
	font-weight: 500;
	color: #f39c12;
	/* A nice highlight color */
}

/* Projects/Portfolio Section */






/* Styling for Tabbed Certifications Section */
.solar_tabbed_cert_section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.cert-tabs {
	border-bottom: 2px solid #dee2e6;
	justify-content: center;
	margin-bottom: 40px;
}

.cert-tabs .nav-item .nav-link {
	border: none;
	border-bottom: 2px solid transparent;
	font-weight: 600;
	color: #6c757d;
	padding: 15px 25px;
	font-size: 18px;
	margin-bottom: -2px;
}

.cert-tabs .nav-item .nav-link.active {
	color: #0a0145;
	/* Your theme's primary color */
	border-color: #0a0145;
	background-color: transparent;
}

.tab-content {
	padding: 20px 0;
}

.tab-logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px;
}

.tab-logo-wrapper img {
	max-height: 120px;
	opacity: 0.8;
}

/* Tabbed Certifications Section */




/* Sustainability & Impact Section */
/* Styling for Sustainability & Impact Section */
.solar_sustainability_section {
	padding: 80px 0;
	background-color: #fff;
	/* Clean white background */
}

.sustainability-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	object-fit: cover;
}

.sustainability-content h5 {
	text-align: left;
	/* Override solar_center if needed */
}

.sustainability-content p {
	margin-bottom: 30px;
	color: #6c757d;
	line-height: 1.8;
}

.impact-stats {
	display: grid;
	grid-template-columns: 1fr;
	/* Single column layout for clarity */
	gap: 25px;
}

.stat-item {
	display: flex;
	align-items: center;
}

.stat-item .icon-wrapper {
	flex-shrink: 0;
	width: 55px;
	height: 55px;
	background-color: #eaf1ff;
	/* A light, complementary color */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.stat-item .icon-wrapper i {
	font-size: 24px;
	color: #2e8325;
	/* Your theme's primary color */
}

.stat-item .text-wrapper h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
	color: #333;
}

.stat-item .text-wrapper span {
	font-size: 15px;
	color: #6c757d;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991px) {
	.sustainability-image {
		margin-bottom: 40px;
	}
}

@media (min-width: 768px) {
	.impact-stats {
		/* On medium screens and up, use two columns */
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Sustainability & Impact Section */





/* Styling for Full-Width Impact Section */
.solar_impact_banner {
	position: relative;
	padding: 80px 0;
	background-image: url('../images/sustainability-bg.jpg');
	/* IMPORTANT: Add your background image */
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	/* Creates a nice parallax effect */
	color: #fff;
}

.impact-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.85);
	/* Dark blue/black overlay. Adjust opacity as needed */
	z-index: 1;
}

.solar_impact_banner .container {
	position: relative;
	z-index: 2;
}

.solar_impact_banner h5,
.solar_impact_banner h1 {
	color: #fff;
}

.impact-intro {
	max-width: 700px;
	margin: 15px auto 50px auto;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	line-height: 1.7;
}

.impact-counters-row {
	justify-content: center;
}

.impact-counter {
	text-align: center;
	margin-bottom: 30px;
}

.impact-counter i {
	font-size: 48px;
	color: #2e8325;
	margin-bottom: 15px;
}

.impact-counter h2 {
	font-size: 42px;
	font-weight: 800;
	/* Extra bold for impact */
	color: #fff;
	margin-bottom: 10px;
}

.impact-counter p {
	font-size: 16px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}
/* Sustainability & Impact Section */




/*-------------------------------- About Us -------------------------------------------*/

.solar_section_accordian{
	padding-bottom: 160px;
}



/*-------------------------------- Service -------------------------------------------*/

.solar_scope_list ul li i,
.solar_scope_list ul li {
	color: #2e8325;
}



/*-------------------------------- Contact Us -------------------------------------------*/

/*-------------------------------------------------------
    10. Contact Info Details Section
-------------------------------------------------------*/
.solar_contact_details {
    padding-top: 80px;
    padding-bottom: 50px;
}

.contact_info_item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    padding: 30px 25px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.contact_info_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact_info_icon {
    margin-right: 20px;
}

.contact_info_icon i {
    font-size: 36px;
    color: #ffb400; /* This color matches the theme's yellow accent */
}

.contact_info_text h4 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.contact_info_text p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.contact_info_text p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_info_text p a:hover {
    color: #ffb400;
}






/*-------------------------------------------------------
    11. Enhanced Contact Form & Map Section (Updated)
-------------------------------------------------------*/
.solar_contact {
    padding-top: 80px; /* Add top padding */
    padding-bottom: 0; /* Remove bottom padding as the map is now full-width */
    background-color: #fcfcfc;
}

/* This rule is the same, just for context */
.contact_form_wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
}

/* Update this rule to center the text */
.contact_heading.text-center p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}




/* Add this new CSS for the full-width map */
.contact_map_full_width {
    width: 100%;
    height: 450px; /* Adjust height as needed */
}

.contact_map_full_width iframe {
    width: 100%;
    height: 100%;
    border: 0;
}










/*-------------------------------------------------------
	12. Footer Section Enhancements
-------------------------------------------------------*/

.solar_footer_ab a img {
	margin-top: 10px;
}