
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-content {grid-template-columns: 1fr !important;gap: 0 !important;height: auto !important;top: 0 !important;}
.hero-section {padding: 10rem 0 5rem !important;}
.hero-content .btn {width: 250px;}
.header-cta .btn {margin-top: 0;}
/* Fix overlay blocking CTA */
.circular-diagram {
    pointer-events: none;
}

/* Keep orbital items clickable */
.circular-diagram .orbital-item {
    pointer-events: auto;
}

/* Ensure CTA is clickable */
#activeCTA {
    position: relative;
    z-index: 99999 !important;
    pointer-events: auto !important;
}
/* Button Styles */
.btn {
 display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  font-family: "Roboto Flex", serif;
}

.btn-primary {
    background: #2d7d32;
  font-size: 17px;
  padding: 16px 24px;
  color: #fff;
  margin-top: 20px;

}

.btn-primary:hover {
    background: #15803d;
    transform: none !important;
}

.btn-green {
	background: #2d7d32;
	color: white;
	border-radius: 9999px;
	padding: 16px 30px;
	font-size: 17px;
	border-radius: 8px;
}

.btn-green:hover {
    background: #059669;
}

.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);
}

.btn-cta:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;display: block;
}

/* Greener Tomorrow Section */
.greener-section {
    background: linear-gradient(135deg, #fff 0%, #e5ffed 100%);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.section-title-large {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 40px;
	color: #111827;
	text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.75;
	padding-bottom: 15px;
}

.benefits-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border: 1px solid #d1fae5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item h3 {font-size: 18px;margin-bottom: 15px;}

.benefit-item:hover {
    transform: scale(1.05);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 400;
    color: #1f2937;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
}

.process-steps {
    max-width: 64rem;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -48px;
    width: 2px;
    background: #d1fae5;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.step-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.step-subdescription {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
}

/* Circular Section */
/*.circular-section {
    padding: 5rem 0;
    background: #fbfafa;
}

.circular-component {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.circular-background {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.circular-background::before,
.circular-background::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.circular-background::before {
    background: #10b981;
    top: 25%;
    left: 25%;
}

.circular-background::after {
    background: #059669;
    bottom: 25%;
    right: 25%;
}

.circular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    border-radius: 1.5rem;
    padding: 3rem;
}

.circular-content {
    color: white;
}

.circular-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.text-green {
    color: #2d7d32;
}

.circular-details {
    margin-bottom: 2rem;
}

.circular-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.circular-description {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.circular-subdescription {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.75;
}*/

/* Circular Diagram */
/*.circular-diagram {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: #2d7d32;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 4px solid rgba(16, 185, 129, 0.3);
}

.center-content {
    text-align: center;
    color: white;
}

.center-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.center-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Orbital Items */

.circular-section {
    padding: 5rem 0;
    background: #fbfafa;
}

.circular-component {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.circular-background {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.circular-background::before,
.circular-background::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.circular-background::before {
    background: #10b981;
    top: 25%;
    left: 25%;
}

.circular-background::after {
    background: #059669;
    bottom: 25%;
    right: 25%;
}

.circular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    border-radius: 1.5rem;
    padding: 3rem;
}

.circular-content {
    color: white;
}

.circular-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.text-green {
    color: #10b981;
}

.circular-details {
    margin-bottom: 2rem;
}

.circular-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.circular-description {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.circular-subdescription {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.75;
}

/* Circular Diagram */
.circular-diagram {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 4px solid rgba(16, 185, 129, 0.3);
}

.center-content {
    text-align: center;
    color: white;
}

.center-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.center-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Orbital Items */
.orbital-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.orbital-item-1 {
    transform: translate(calc(-50% + 0px), calc(-50% + -240px));
}

.orbital-item-2 {
    transform: translate(calc(-50% + 208px), calc(-50% + -120px));
}

.orbital-item-3 {
    transform: translate(calc(-50% + 208px), calc(-50% + 120px));
}

.orbital-item-4 {
    transform: translate(calc(-50% + 0px), calc(-50% + 240px));
}

.orbital-item-5 {
    transform: translate(calc(-50% + -208px), calc(-50% + 120px));
}

.orbital-item-6 {
    transform: translate(calc(-50% + -208px), calc(-50% + -120px));
}

.orbital-item-7 {
    transform: translate(calc(-50% + 120px), calc(-50% + 0px));
}

.orbit-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.orbital-item:hover .orbit-icon,
.orbital-item.active .orbit-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.5);
    transform: scale(1.1);
}

.orbit-icon i {
    font-size: 2rem;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.orbital-item:hover .orbit-icon i,
.orbital-item.active .orbit-icon i {
    color: white;
}

.orbit-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.75rem;
    white-space: nowrap;
    font-size: 0.75rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.orbital-item:hover .orbit-label,
.orbital-item.active .orbit-label {
    color: #10b981;
}

.orbital-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.orbital-item-1 {
    transform: translate(calc(-50% + 0px), calc(-50% + -240px));
}

.orbital-item-2 {
   transform: translate(calc(-50% + 210px), calc(-50% + -100px));
}

.orbital-item-3 {
    transform: translate(calc(-50% + 190px), calc(-50% + 120px));
}

.orbital-item-4 {
    transform: translate(calc(-50% + 0px), calc(-50% + 210px));
}

.orbital-item-5 {
    transform: translate(calc(-50% + -190px), calc(-50% + 120px));
}

.orbital-item-6 {
    transform: translate(calc(-50% + -210px), calc(-50% + -100px));
}

.orbital-item-7 {
    transform: translate(calc(-50% + 220px), calc(-50% + -50px));
}

.orbit-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.orbital-item:hover .orbit-icon,
.orbital-item.active .orbit-icon {
    background: linear-gradient(to right, #16a34a, #10b981, #14b8a6);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.5);
    transform: scale(1.1);
}

.orbit-icon i {
    font-size: 2rem;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.orbital-item:hover .orbit-icon i,
.orbital-item.active .orbit-icon i {
    color: white;
}

.orbit-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.75rem;
    white-space: nowrap;
    font-size: 0.85rem !important;
    color: #9ca3af;
    transition: color 0.3s ease;
	width: 100%;
  text-align: center;
}

.orbital-item:hover .orbit-label,
.orbital-item.active .orbit-label {
    color: #10b981;
}*/

/* Blog Section */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    /*aspect-ratio: 16/10;*/
    background: #2d7d32;
}
.blog-image img {height: 200px;width: 100%;object-fit: cover;}


.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.blog-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #2d7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #15803d;
}

.blog-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translate(2px, -2px);
}

/* CTA Section */
.cta-section {
	margin-top: 0;
	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;
	margin-bottom: 70px;
}

.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-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.mb-0 {margin-bottom: 0;}
@media(max-width:1024px){
	.hero-grid {grid-template-columns: 1fr !important;}
	.hero-content {order: 2;}
	.hero-section {padding: 7rem 0 3rem !important;}
	.hero-content .btn {margin:0 auto ;}
	.hero-image img {height: 200px;}
	.section-title-large {font-size: 2.8rem !important;}
	.circular-section {padding: 4rem 0;}
	.process-section {padding: 4rem 0 0;}
	
	.circular-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .circular-diagram {
        height: auto;
        position: relative;
    }
    
    /* Hide desktop orbital layout on mobile */
    .orbital-item {
        position: relative !important;
        transform: none !important;
        display: inline-block;
        margin: 0;left: 0;top: 0;margin-bottom: 10px;
    }
    
    /* Create mobile grid layout */
    .circular-diagram {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 2rem 0;
    }
    
    /* Hide center circle on mobile */
    .center-circle {
        display: none;
    }
    
    /* Adjust orbital items for mobile grid */
    .orbit-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .orbit-icon i {
        font-size: 1.5rem;
    }
    
    .orbit-label {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        font-size: 0.7rem;
        text-align: center;
    }
    
    /* Adjust each orbital item for mobile */
    .orbital-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;color: #fff;
    }
	
	.circular-diagram {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .orbit-label {
        font-size: 0.65rem;
        white-space: normal;
        line-height: 1.2;
    }
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
}

.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 (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) {
    .circular-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .circular-diagram {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    .circular-main-title {
        font-size: 1.75rem;
    }
}
@media(max-width:767px){
	.hero-grid {gap: 1rem;}
	.hero-content {padding: 6% 0;}
	.section-title-large {font-size: 2rem !important;}
	.greener-section {padding: 2.2rem 0;}
	.section-header {margin-bottom: 2rem;}
	.hero-section {padding: 6rem 0 2rem !important;}
	.circular-section {padding: 3rem 0;}
	.section-title-large {margin-bottom: 20px;}
	.blog-section {padding-bottom: 30px;}
	.cta-title {color: #fff;}
	.cta-section {padding: 2rem;}
	.cta-description {margin: 0 auto 1.5rem;font-size: 16px;}
	.cta-section {margin-bottom: 50px;}
	.hero-description {font-size: 16px;}
	.blog-image img {height: 180px;}
	.cta-title {font-size: 2rem;}
	
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
	
	.circular-diagram {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .orbit-icon {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }
    
    .orbit-icon i {
        font-size: 1.25rem !important;
    }
    
    .circular-grid {
        padding: 2rem 1.5rem !important;
    }
    
    .circular-content {
        padding: 0;
    }
}
