@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html,body {
	overflow-x: hidden;
}
* {
	margin: 0;
	padding: 0;
    /* font-family: "Roboto", sans-serif; */
	font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Inter", sans-serif;
}

:root {
	--primary-color: #f4a23a;
	--secondry-color: #0d4575;
}

:focus {
	outline: none;
}

.btn-close:focus {
	outline: 0;
	box-shadow: none !important;
	opacity: 1;
}

/* ============ HEADER =========== */

.navbar {
	padding: 15px 0;
}

.navbar-brand img {
	height: 65px;
}

.modal-body.modal_desc {
	padding: 0;
}

.offer_close {
	position: absolute;
	right: 0;
	top: -25px;
}

.modal_desc .btn-close {
	box-sizing: content-box;
	outline: none;
	height: 1em;
	padding: .25em .25em;
	color: #fff;
	border: 0;
	border-radius: .25rem;
	opacity: 1;
	background-image: url("../image/close.png");
}

.header_menu .nav-item .nav-link {
	color: #374151;
	padding-left: 20px !important;
}

.offer_img {
	width: 100%;
	border: 5px solid #fff;
	border-radius: 20px;
}

/* Button */
.btn-quote {
	background: #f5a623;
	color: #fff;
	padding: 8px 18px;
	border-radius: 6px;
	font-weight: 500;
}

.btn.btn-quote {
	background: var(--primary-color);
	color: #000;
}

.btn-quote:hover {
	background: var(--primary-color);
}

/* Dropdown Animation */
.header_menu .dropdown-menu {
	border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: block;
    border-top: 5px solid orange;
    border-radius: 20px;
}

/* Show dropdown on hover (desktop) */
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Dropdown items */
.navbar .dropdown-item {
	padding: 10px 15px;
	font-size: 14px;
	color: #374151;
	font-family: "Poppins", sans-serif;
	border-radius: 20px;
}

.dropdown-item i {
	margin-right: 8px;
	color: #0d6efd;
}

.header_menu .nav-item .nav-link:hover {
	color: var(--primary-color);
}

/* ========== HEADER FORM ============ */
/* Card */
.register-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Left Image Section */
.left-section {
    position: relative;
    background: url('../image/popup.jpg') center/cover no-repeat;
    min-height: 400px;
    color: #fff;
    display: flex;
    align-items: end;
    padding: 30px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 59%);
}

.left-content {
    position: relative;
    z-index: 2;
}

.left-content h2 {
    font-weight: 700;
}

.submit_btns {
    background: darkgreen;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    border-radius: 0;
}

/* Right Form */
.form-section {
    padding: 40px;
    background: #fff;
}

.form-control {
    height: 45px;
}

.btn.btn-green.w-100.submit_btns {
    padding: 10px;
	background-color: #075e07;
	color: #fff;
}

.btn-green {
    background: #1f7a5a;
    color: #fff;
    height: 45px;
    border-radius: 6px;
}

.btn-green:hover {
    background: #17694c;
}

/* Social Buttons */
.social-btn {
    border: 1px solid #ddd;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn a {
    color:#000;
	text-decoration: none;
}

/* Divider */
.divider {
    text-align: center;
    margin: 15px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.divider span {
    background: #fff;
    padding: 0 10px;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media(max-width:768px){
    .left-section {
        min-height: 250px;
    }
    .form-section {
        padding: 25px;
    }
	.form-box {
     display: none;
   }
   .left-section {
    display: none;
}
}


/* ========= BANNER =========== */
.hero-section {
	position: relative;
	height: 85vh;
	overflow: hidden;
	color: #fff;
}

.hero-section .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
    background-size: cover;
}

.hero-section .carousel-item {
	height: 85vh;
	background-size: cover;
	background-position: center;
}

.form-box .form-control {
	border-radius: 0;
	padding: 8px 10px;
}

.carousel-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
}

/* Keep content above slider */
.hero-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	z-index: 2;
}

/* Form styling */
.form-box {
	background: #fff;
	color: #000;
}

/* Responsive fix */
@media (max-width: 768px) {
	.hero-section {
		height: 100vh;
        padding: 0 0;
	}

	.carousel-item {
		height: 100%;
	}
}

/* ========= BANNER BOTTOM ========== */

.feature-section {
    /* background: #f5f7fa; */
	background: #fff;
}

/* Card Style */
.feature-card {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: 0.3s;
	position: relative;
}

/* Hover Effect */
.feature-card:hover {
	transform: translateY(-5px);
}

/* Bottom Borders */
.border-blue {
	border-bottom: 5px solid #0d6efd;
}

.border-orange {
	border-bottom: 5px solid #f5a623;
}

.border-green {
	border-bottom: 5px solid #28a745;
}

/* Icon Box */
.icon-box {
	width: 60px;
	height: 60px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

/* Icon Colors */
.bg-light-blue {
	background: rgba(13,110,253,0.1);
	color: #0d6efd;
}

.bg-light-orange {
	background: rgba(245,166,35,0.1);
	color: #f5a623;
}

.bg-light-green {
	background: rgba(40,167,69,0.1);
	color: #28a745;
}

.feature-card h5 {
	line-height: 1.3;
}

/* ========== ABOUT COMPANY ============= */

.about-section {
	background: #f6fef8;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.about-img.position-relative img {
	height: 530px;
	width: 100%;
	object-fit: cover;
    /* border: 1px solid #ddd; */
	/* border-radius: 70px 0 70px 0; */;
}

/* Image */
.about-img img {
	transition: 0.4s;
}
/* .about-img img:hover {
    transform: scale(1.05);
} */

/* Heading */
.heading {
	text-transform: capitalize;
	font-size: 30px;
	color: #000;
	font-weight: 800;
}

/* List */
.about-section ul li {
	margin-bottom: 10px;
	font-weight: 500;
}

.about-section ul li i {
	font-family: 'FontAwesome';
	color: var(--primary-color);
	padding-right: 10px;
}

/* Buttons */
.btn-warning {
	background: var(--primary-color);
	border: none;
}

.btn-warning:hover {
	background: var(--primary-color);
}

/* ========== FEATURES ========== */
.project_features {
	background: #0f5132;
	border-radius: 0;
	padding: 40px 20px;
	border-top: 1px solid rgb(219 234 254 / var(--tw-border-opacity, 1));
	border-bottom: 1px solid rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.feature-box {
	text-align: center;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: 0.3s;
}

.feature-box:hover {
	transform: translateY(-5px);
}

i.fas.fa-phone-alt {
	transform: rotate(110deg);
}

.icon-circle {
	width: 70px;
	height: 70px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.icon-circle i {
	font-size: 28px;
}

.feature-title {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 5px;
	color: #fff;
}

.feature-text {
	color: #fff;
	font-size: 14px;
}

/* =========== SUBSIDY =========== */
.project_subsidy {
	padding: 40px 0;
}

.project_subsidy .btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
    padding: 10px 25px;
}

.badge-custom {
	background: green;
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 600;
}

.card-custom {
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	transition: 0.3s;
	border: 2px solid #ddd;
}

.card-custom  .btn-outline-primary {
	color: #000;
	border-color: #2b6cb0;
	padding: 10px 30px;
}

.card-custom  .btn-outline-primary:hover {
	color: #000;
	border-color: #ffc107;
	background-color: #ffc107;
}

.card-custom:hover {
	transform: translateY(-5px);
}

.highlight-card {
	border: 2px solid #f39c12;
	position: relative;
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #f39c12;
	color: #fff;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
}

.price {
	font-size: 2rem;
	font-weight: 700;
	color: #07579b;
}

.btn-outline-primary {
	color: #000;
	border-color: #000;
}

.price-orange {
	color: #f39c12;
}

.btn-outline-primary {
	border-radius: 25px;
	padding: 8px 20px;
}

.btn-warning {
	border-radius: 25px;
	padding: 10px 20px;
}

.save-box {
	background: #f1f3f5;
	padding: 8px;
	border-radius: 8px;
	font-size: 14px;
	margin: 10px 0;
}

.card-custom h4 {
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
}

/* ============= PROCESS ============ */
.subsidy_process {
	padding: 40px 0px;
}

.process-section {
	background: #f4f7fb;
	padding: 40px 0px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.process-title p {
	color: #6c757d;
}

.timeline {
	position: relative;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #d0d7e2;
	z-index: 0;
}

.step-box {
	position: relative;
	text-align: center;
	padding: 20px;
	z-index: 1;
}

.step-icon {
	width: 90px;
	height: 90px;
	border: 2px solid #2b6cb0;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
}

.step-icon i {
	font-size: 30px;
	color: #2b6cb0;
}

.step-badge {
	background: #2b6cb0;
	color: #fff;
	font-size: 12px;
	padding: 5px 12px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 10px;
}

.step-title {
	font-weight: 600;
	margin-bottom: 5px;
}

.step-text {
	font-size: 14px;
	color: #6c757d;
}

.process-btn {
	margin-top: 40px;
	text-align: center;
}

.process-btn .btn {
	padding: 12px 30px;
	border-radius: 10px;
	font-weight: 500;
}

/* ========= SUBSIDY PROCESS ========== */
/* Align icon + heading in one row */
.custom-card {
	display: flex;
	flex-direction: column;
}

/* Create top row (icon + heading) */
.custom-card .icon-circle {
	display: inline-flex;
	margin-right: 12px;
}

/* Wrap icon + heading together */
.custom-card h5 {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}

/* Create a flex row for icon + heading */
.custom-card .icon-circle,
.custom-card h5 {
	display: inline-flex;
	align-items: center;
}

/* Put icon + heading in one line */
.custom-card .icon-circle + h5 {
	display: inline-flex;
}

/* Ensure proper spacing */
.custom-card h5 {
	margin-left: 10px;
}

/* Force list items below heading */
.custom-card .list-item {
	display: block;
	margin-top: 10px;
}

/* Optional: better alignment wrapper */
.custom-card {
	gap: 10px;
}
/* Card Styles */
.custom-card {
	border-radius: 15px;
	padding: 30px;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	border: 1px solid #ddd;
	transition: all ease .5s;
}

.custom-card:hover {
	transform: translateY(-5px);
	transition: all ease .5s;
}

/* Background Colors */
.bg-blue {
	background: #eaf3ff;
}

.bg-orange {
	background: #fff3e6;
}

.bg-green {
	background: #e9f7ef;
}

/* Icons */
.icon-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	margin-bottom: 15px;
}

.icon-blue {
	background: #0d6efd;
}

.icon-orange {
	background: #f39c12;
}

.icon-green {
	background: #28a745;
}

/* List */
.list-item {
	margin-bottom: 0px;
	font-size: 15px;
}

.check {
	color: #28a745;
	margin-right: 8px;
}

.check i {
	font-family: 'FontAwesome';
}

.arrow {
	color: #f39c12;
	margin-right: 8px;
}

/* Important Box */
.important-box {
	background: #fff8e1;
	border-left: 5px solid #ffc107;
	border-radius: 10px;
	padding: 20px;
	margin-top: 40px;
}

/* ========== WHY US DIFFRENT ========== */

.why_diffrent {
	background: #f4f7fb;
	padding: 40px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
/* Section */
.headings_s {
	font-weight: 800;
	font-size: 40px;
	color: #2c6cb0;
}

.green-bg {
	background-color: #008000;
}

.orabge-bg {
	background-color: var(--primary-color);
}

.blue-bg {
	background-color: var(--secondry-color);
}

.purple-bg {
	background-color: purple;
}

.fas.fa-solar-panel {
	color: #2c6cb0;
}
/* .green-bg {
    background-color: #0f5132;
} */

/* Cards */
.feature-card {
	background: #fff;
	border-radius: 15px;
	padding: 25px 40px;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	border-left: 5px solid transparent;
	transition: 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
}

/* Border colors */
.border-blue {
	border-color: #2c6cb0;
}

.border-green {
	border-color: #28a745;
}

.border-orange {
	border-color: #fd7e14;
}

.border-purple {
	border-color: #6f42c1;
}

/* Icon */
.icon-box {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #2c6cb0;
}

/* Heading row */
.heading-row {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

/* Text */
.feature-card h5 {
	margin: 0;
	font-weight: 700;
	color: #000;
}

.feature-card p {
	font-size: 15px;
	color: #555;
	line-height: 1.9;
}

/* =========== SOLAR ENERGY ========== */
.solar_energy {
	padding: 40px 0;
}

.solar_energy h5 {
	font-weight: 700;
	color: #000;
}

.badge-custom {
	background: #e0edff;
	color: #1e3a8a;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 20px;
}

.card-custom {
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	transition: 0.3s;
}

.card-custom:hover {
	transform: translateY(-5px);
}

.card-blue {
	border-left: 4px solid #2563eb;
}

.card-orange {
	border-left: 4px solid #f59e0b;
}

.financial-box {
	background: #0f5132;
    color: #fff;
    border-radius: 12px;
    padding: 25px;
}

.financial-box h3 {
	margin: 0;
	font-weight: 700;
	font-size: 25px;
}

ul li {
	margin-bottom: 8px;
}

.color-1 {
	color: #2c6cb0;
}

.color-4 {
	color: #075e07;
}

.color-3 {
	color: orangered;
}

.solar_energy h6 {
	font-size: 20px;
	font-weight: 700;
	color: #2c6cb0;
	text-decoration: underline;
}

.solar_energy i {
	font-family: 'FontAwesome';
	padding-right: 10px;
}


/* ========== FOOTER ============== */

.cta-banner {
	padding: 40px 0 0;
	position: relative;
	margin-bottom: -20px;
}

.cta-box {
	background: #2e9e2e;
	padding: 30px;
	border-radius: 20px;
	position: relative;
	border: 2px dashed #fff;
}

.call-box {
	background: #0d5aa1;
	color: #fff;
	padding: 10px 20px;
	border-radius: 50px;
}

.call-box .icon {
	font-size: 20px;
	margin-right: 10px;
}

.footer-section h5 {
	margin-bottom: 15px;
}


/* Footer */
.footer-section {
	padding: 50px;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(../image/footer-bg.jpg);
	background-size: cover;
	background-position: center;
}

/* Links */
.footer-section a {
	color: #fff;
	text-decoration: none;
	margin-bottom: 10px;
	display: inline-block;
}

.footer-section a:hover {
	color: #28a745;
}

/* Newsletter */
.newsletter input {
	border-radius: 50px 0 0 50px;
}

.newsletter button {
	border-radius: 0 50px 50px 0;
}

/* FOOTER BUTTON ===== */
/* Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Button Base */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
	transition: all ease .5s;
}

/* WhatsApp Color */
.whatsapp {
    background: #25D366;
}

/* Call Color */
.call {
    background: #007bff;
}

/* Pulse Animation */
.float-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}


.float-btn:hover {
    transform: scale(1.1);
	color: #fff;
	transition: all ease .5s;
}


/* @media (max-width: 576px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


@media (max-width: 768px) {
	.cta-box {
		text-align: center;
	}

	.custom-card {
		padding: 20px;
	}
}



@media (max-width: 768px) {
	.feature-card {
		text-align: center;
	}

	.about-section {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.hero-section {
		text-align: center;
	}
}


@media (max-width: 991px) {
	.dropdown-menu {
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		box-shadow: none;
	}

	.timeline::before {
		display: none;
	}
}

@media (min-width: 992px) {
	.nav-item.dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
	}
} */