.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.decorative-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
}
.blob-1 {
	top: 80px;
	left: 40px;
	width: 288px;
	height: 288px;
	background: #86efac;
}
.blob-2 {
	bottom: 80px;
	right: 40px;
	width: 384px;
	height: 384px;
	background: #bfdbfe;
}
.blob-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: #fef3c7;
}
/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #16a34a;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(22, 163, 74, 0.2);
}

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-hero {
	background: linear-gradient(to right, #16a34a, #22c55e);
	color: #fff;
	padding: 1.25rem 2.5rem;
	font-size: 1.125rem;
	border-radius: 9999px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
	width: 350px;
	margin: 0 auto;
}

.btn-hero:hover {
    background: linear-gradient(to right, #15803d, #16a34a);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.btn-cta {
    background: white;
    color: #16a34a;
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
}

.btn-cta:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    /*background: linear-gradient(135deg, #16a34a 0%, #10b981 50%, #059669 100%);*/
	background:linear-gradient(to bottom right, #f0fdf4, #ffffff, #eff6ff);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;transform: none !important;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hero-blur {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-blur-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
}

.hero-blur-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
}

.hero-content {
	max-width: 80%;
	margin: 0 auto 50px;
	color: white;
	position: relative;
	z-index: 10;
	grid-template-columns: 1fr;
	gap: 0;
	height: auto;
}

.hero-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: #dcfce7;
	backdrop-filter: blur(10px);
	border-radius: 9999px;
	margin: 0 auto 1.5rem;
	width: auto;
	color: #15803d;
}

.hero-badge span {
	color: #15803d;
	font-size: 1rem;
	font-weight: 600;
}
.hero-badge span i {margin-right: 5px;}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #16a34a;
}

.hero-subtitle {
    font-size: 1.5rem;
   color: #000;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Benefits Banner */
.benefits-banner {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    padding: 3rem 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-check-item i {
    color: #16a34a;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-check-item span {
    font-size: 1.125rem;
    color: #1f2937;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: white;
}

.form-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border: 1px solid #e5e7eb;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto;
}

.consultation-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	margin-bottom: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group small {
    font-size: 0.75rem;
    color: #6b7280;
}

.form-submit {
    text-align: center;
}

/* Systems Section */
.systems-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.system-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.system-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;display: none
}

.system-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.system-icon i {
    font-size: 2.5rem;
    color: #16a34a;
}

.system-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.system-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.system-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.system-features i {
    color: #16a34a;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.system-features i.fa-times {
    color: #ef4444;
}

.system-best {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #166534;
    line-height: 1.6;
}

.system-best strong {
    color: #14532d;
}

/* Rooftop Section */
.rooftop-section {
    padding: 5rem 0;
    background: white;
}

.rooftop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.rooftop-column {
    text-align: center;
}

.rooftop-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.rooftop-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.rooftop-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rooftop-type-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.rooftop-type-item:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    transform: translateX(8px);
}

.rooftop-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rooftop-icon i {
    font-size: 1.5rem;
    color: #16a34a;
}

.rooftop-type-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
}

/* Survey & AMC Combined Section */
.survey-amc-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
}

.survey-amc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /*border: 2px solid #d1fae5;*/
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.15);
}

.service-icon-box {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3);
}

.service-icon-box i {
    font-size: 3rem;
    color: white;
}

.service-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    /*text-align: center;*/
}

.service-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    /*text-align: center;*/
}

.amc-features {
    list-style: none;
    margin-bottom: 2rem;
}

.amc-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.amc-features i {
    color: #16a34a;
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.amc-features span {
    color: #4b5563;
}

.service-cta {
    text-align: center;
}

/* Monitoring Section */
.monitoring-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.monitoring-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.monitoring-content .section-title-large {
    color: white;
}

.monitoring-content .section-description {
    color: #d1d5db;
    margin-bottom: 3rem;
}

.monitoring-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.monitoring-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.monitoring-feature:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-8px);
    border-color: #10b981;
}

.monitoring-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.monitoring-icon i {
    font-size: 2rem;
    color: white;
}

.monitoring-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.monitoring-text p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.reason-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reason-icon i {
    font-size: 1.75rem;
    color: #16a34a;
}

.reason-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.6rem;
}

.reason-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(90deg, #16a34a 0%, #10b981 100%);
    padding: 5rem 0;
}

.final-cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.cta-section {
	margin: 3rem 0 5rem;
	background: linear-gradient(to bottom right, #16a34a, #059669, #15803d);
	border-radius: 1.5rem;
	padding: 4rem;
	text-align: center;
	color: white;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	position: relative;
	overflow: hidden;
}
.cta-decorative {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}
.cta-decorative-1 {
	top: 0;
	right: 0;
	width: 16rem;
	height: 16rem;
	margin-right: -8rem;
	margin-top: -8rem;
}
.cta-decorative-2 {
	bottom: 0;
	left: 0;
	width: 12rem;
	height: 12rem;
	margin-left: -6rem;
	margin-bottom: -6rem;
}
.cta-content {
	position: relative;
	z-index: 10;
}
.cta-button {
	background: #fff;
	color: #2d7d32;
	padding: 14px 24px;
	border-radius: 8px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	font-size: 15px;
	font-family: "Roboto Flex", serif;
	text-decoration: none;
}
.cta-button:hover {
	background: #f9fafb;
	transform: scale(1.05);
}

/* Responsive Design */
@media(max-width:1366px){
	.cta-title {font-size: 3rem;}
	.hero-title {font-size: 4rem;}
	
}

@media (max-width: 1024px) {
    .survey-amc-grid {grid-template-columns: 1fr;gap: 2rem;}
	.hero-title {font-size: 3.5rem !important;}
	.benefits-banner {padding: 2rem 1rem;}
	.form-section {padding: 3rem 0;}
	.section-title-large {font-size: 2.5rem !important;}
	.form-header {margin-bottom: 2rem;}
	.systems-section, .rooftop-section, .survey-amc-section, .monitoring-section, .why-choose-section {padding: 4rem 0;}
	.rooftop-types {gap: 0.5rem;}
	.monitoring-features {gap: 1rem;}
	.cta-section {margin: 2rem 0 3rem;
	
}
	
@media (max-width: 1024px) and (orientation:landscape) {
	.section-header {margin-bottom: 2rem;}
	
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .rooftop-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .monitoring-features {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-cta,
    .btn-hero {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
}

@media(max-width:767px){
	.hero-content {max-width: 100%;margin: 0 auto 40px;}
	.hero-title {font-size: 2.5rem !important;}
	.hero-subtitle {margin-bottom: 1.5rem;}
	.benefit-check-item span {font-size: 1rem;}
	.section-title-large {font-size: 1.8rem !important;}
	.section-description {font-size: 1rem;}
	.form-section {padding: 2rem 0;}
	.btn-primary, .btn-cta, .btn-hero {width: 100%;}
	.form-grid {margin-bottom: 1rem;}
	.systems-section, .rooftop-section, .survey-amc-section, .monitoring-section, .why-choose-section {padding: 3rem 0;}
	.section-header {margin-bottom: 2rem;}
	.system-card {padding: 1.5rem;}
	.system-icon i {font-size: 2rem;}
	.system-icon {width: 4rem;height: 4rem;}
	.systems-grid {gap: 1rem;}
	.rooftop-type-item {padding: 1rem;}
	.rooftop-description {margin-bottom: 1rem;}
	.service-icon-box i {font-size: 2rem;}
	.service-icon-box {width: 4rem;height: 4rem;}
	.monitoring-content .section-description {margin-bottom: 2rem;}
	.reasons-grid {gap: 1rem;}
	.cta-section {padding: 2rem 1rem;}
	
	
}