
.decorative-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
.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;
}
.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
}
/* Hero Section */
.hero {
    position: relative;
    /*background: linear-gradient(to bottom right, #f0fdf4, #ecfdf5, #f0fdfa);*/
    overflow: hidden;
}

.hero-decorative {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-decorative-1 {
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(134, 239, 172, 0.3);
    margin-left: -12rem;
    margin-top: -12rem;
}

.hero-decorative-2 {
    bottom: 0;
    right: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(134, 239, 172, 0.3);
    margin-right: -10rem;
    margin-bottom: -10rem;
}

.hero-decorative-3 {
    top: 50%;
    left: 33%;
    width: 16rem;
    height: 16rem;
    background: rgba(153, 246, 228, 0.2);
    filter: blur(60px);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 0 0;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;height: auto;top: auto;
}
.highlight {
	color: #16a34a;
	position: relative;
	display: inline-block;
}
.underline-svg {
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
}
@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #15803d;
  padding: 8px 22px;
  border-radius: 9999px;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;

}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.1;margin-top: 20px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    max-width: 42rem;
    color: #374151;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.2rem;
    font-weight: 400;
    }
}

.hero-button {
	background: linear-gradient(to right, #16a34a, #059669);
	color: white;
	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;
}

.hero-button:hover {
    background: linear-gradient(to right, #15803d, #047857);
    transform: scale(1.05);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid #ddd;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;display: block;
}

.hero-accent-1 {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    border: 4px solid rgba(134, 239, 172, 0.4);
    border-radius: 0.75rem;
}

.hero-accent-2 {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
    border: 4px solid rgba(110, 231, 183, 0.4);
    border-radius: 0.75rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    background: white;
    border-color: #86efac;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #dcfce7;
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

.stat-icon svg {
	width: 1.8rem;
	height: 1.8rem;
	stroke: #16a34a;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3rem;
    }
}

.stat-label {
    color: #4b5563;
    font-size: 1rem;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #1f2937;
    font-weight: bold;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tabs-list {
	/* background: linear-gradient(to right, #dcfce7, #d1fae5); */
	/* border: 2px solid #bbf7d0; */
	padding: 0.5rem;
	border-radius: 0.75rem;
	display: flex;
	gap: 0.5rem;
	/* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
}

.tab-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
    color: #374151;
}

.tab-trigger svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.tab-trigger.active {
    background: linear-gradient(to right, #16a34a, #059669);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tab-trigger:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Project Grid */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Project Card */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.5s;
}

.project-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.project-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    transform: translateY(1.5rem);
    transition: transform 0.3s;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.project-detail svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2d7d32;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
}

/* CTA Section */
.cta-section {
    margin-top: 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-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;color: #fff;
    }
}

.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);
}


.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-trigger {
    cursor: pointer;
    
}
.tab-trigger.active {
    
}
.tab-trigger:hover {
    
}

@media(max-width:1366px){
	.hero-container {padding: 9rem 0 2rem;}
	
	
}

@media(max-width:1024px){
	.stats-grid {grid-template-columns: repeat(2, 1fr);padding: 0 4%;}
	.main-content {padding: 3rem 1.5rem;}
	.section-header {margin-bottom: 2rem;}
	.tabs-container {margin-bottom: 2rem;}
	.cta-section {margin-top: 2rem;}
}

@media(max-width:767px){
	.hero-container {padding: 6rem 0 2rem;}
	.stats-grid {grid-template-columns: repeat(1, 1fr);}
	.stat-value {font-size: 2.6rem;}
	.hero-content {margin-bottom: 0;padding-bottom: 4rem;}
	.tabs-list {flex-direction:column;}
	.projects-grid {gap: 1rem;}
	.cta-title {color: #fff;}
	.cta-section {padding: 2rem 1rem;}
	.tab-trigger {font-size: 0.9rem;}
	
}