/* Reset and Base Styles */

{ margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Buttons */
.btn {
display: inline-block;
padding: 12px 24px;
border: none;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
font-size: 14px;
}

.btn-primary {
background-color: #22c55e;
color: white;
}

.btn-primary:hover {
background-color: #16a34a;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
}

.btn-outline {
background-color: transparent;
color: white;
border: 2px solid white;
}

.btn-outline:hover {
background-color: white;
color: #333;
}

.btn-large {
padding: 16px 32px;
font-size: 16px;
}

/* Header Styles */
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background-color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
background-color: #2c3e50;
padding: 7.5px 0;
}

.top-bar-content {
display: flex;
justify-content: space-between;
align-items: center;
color: white;
flex-wrap: nowrap;
padding: 0 20px; /* Adjusted padding to center the button */
}

.contact-info {
display: flex;
gap: 20px;
align-items: center;
}

.contact-info i,
.service-area i {
margin-right: 5px;
color: white;
}

.service-area {
display: flex;
align-items: center;
}

.main-nav {
padding: 5px 0;
display: flex;
justify-content: center;
align-items: center;
}

.nav-content {
display: flex;
align-items: center;
height: 100%;
justify-content: center;
}

.logo img {
height: 100%;
object-fit: contain;
vertical-align: middle;
margin-right: 20px; /* Added margin to separate logo from Home text */
}

.logo {
flex-shrink: 0;
margin: 0 auto 10px;
}

.logo-icon {
background-color: #22c55e;
color: white;
padding: 0px;
border-radius: 8px;
margin-right: 15px;
}

.logo-icon i {
font-size: 24px;
}

.logo-text h1 {
font-size: 24px;
color: #22c55e;
margin-bottom: 2px;
}

.logo-text p {
font-size: 12px;
color: #666;
}

.nav-menu {
display: flex;
align-items: center;
gap: 30px;
}

.nav-menu a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}

.nav-menu a:hover {
color: #22c55e;
}

.nav-menu a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: #22c55e;
transition: width 0.3s ease;
}

.nav-menu a:hover::after {
width: 100%;
}

.mobile-menu-toggle {
display: none;
font-size: 24px;
cursor: pointer;
}

/* Hero Section */
.hero {
position: relative;
height: 100vh;
overflow: hidden;
margin-top: 80px;
}

.hero-slider {
position: relative;
height: 100%;
}

.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0;
transition: opacity 1s ease-in-out;
display: flex;
align-items: center;
justify-content: center;
}

.slide.active {
opacity: 1;
}

.slide-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}

.slide-content {
position: relative;
z-index: 10;
text-align: center;
color: white;
max-width: 800px;
padding: 0 20px;
animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.slide-content h2 {
font-size: 3.5rem;
font-weight: bold;
margin-bottom: 20px;
line-height: 1.2;
}

.slide-content .highlight {
color: #22c55e;
}

.slide-content p {
font-size: 1.2rem;
margin-bottom: 30px;
line-height: 1.6;
}

.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.2);
color: white;
border: none;
padding: 15px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
z-index: 20;
}

.slider-nav:hover {
background-color: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev {
left: 20px;
}

.slider-nav.next {
right: 20px;
}

.slide-indicators {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 20;
}

.indicator {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: all 0.3s ease;
}

.indicator.active {
background-color: #22c55e;
}

/* Tree Plantation Section */
.tree-plantation {
padding: 80px 0;
background-color: white;
}

.section-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.text-content h2 {
font-size: 2.5rem;
color: #333;
margin-bottom: 20px;
line-height: 1.3;
}

.text-content .highlight {
color: #22c55e;
}

.section-divider {
width: 60px;
height: 4px;
background-color: #22c55e;
margin-bottom: 30px;
}

.text-content .lead {
font-size: 1.2rem;
margin-bottom: 20px;
color: #333;
}

.text-content p {
margin-bottom: 20px;
color: #666;
line-height: 1.7;
}

.image-content img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
padding: 80px 0;
background-color: #f9fafb;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-header h2 {
font-size: 2.5rem;
color: #333;
margin-bottom: 20px;
}

.section-header p {
font-size: 1.1rem;
color: #666;
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-top: 60px;
}

.feature {
text-align: center;
}

.feature-icon {
background-color: #22c55e;
color: white;
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 24px;
}

.feature h3 {
font-size: 1.3rem;
color: #333;
margin-bottom: 10px;
}

.feature p {
color: #666;
font-size: 0.9rem;
}

/* Services Section */
.services {
padding: 80px 0;
background-color: white;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 40px;
}

.service-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: all 0.3s ease;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
position: relative;
height: 200px;
overflow: hidden;
}

.service-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
transform: scale(1.1);
}

.service-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(34, 197, 94, 0.8);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
opacity: 0;
transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
opacity: 1;
}

.service-overlay i {
font-size: 48px;
margin-bottom: 10px;
}

.service-overlay p {
font-weight: bold;
}

.service-content {
padding: 25px;
}

.service-content h3 {
font-size: 1.3rem;
color: #333;
margin-bottom: 15px;
}

.service-content p {
color: #666;
margin-bottom: 15px;
font-size: 0.9rem;
line-height: 1.6;
}

.service-link {
color: #22c55e;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}

.service-link:hover {
color: #16a34a;
}

/* Gallery Section */
.gallery {
padding: 80px 0;
background-color: #f9fafb;
}

.gallery-carousel {
position: relative;
max-width: 800px;
margin: 0 auto 40px;
height: 400px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.gallery-slide.active {
opacity: 1;
}

.gallery-slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
color: white;
padding: 30px;
}

.gallery-overlay h3 {
font-size: 1.5rem;
margin-bottom: 10px;
}

.gallery-overlay p {
font-size: 1rem;
line-height: 1.5;
}

.gallery-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.8);
color: #333;
border: none;
padding: 15px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
}

.gallery-nav:hover {
background-color: white;
}

.gallery-nav.prev {
left: 20px;
}

.gallery-nav.next {
right: 20px;
}

.gallery-indicators {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 60px;
}

.gallery-indicator {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ccc;
cursor: pointer;
transition: all 0.3s ease;
}

.gallery-indicator.active {
background-color: #22c55e;
}

.gallery-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}

.stat {
background-color: white;
padding: 40px 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
background-color: #22c55e;
color: white;
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 24px;
}

.stat h3 {
font-size: 2.5rem;
color: #333;
margin-bottom: 10px;
}

.stat p {
color: #666;
}

/* Testimonials Section */
.testimonials {
padding: 80px 0;
background-color: white;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-top: 40px;
}

.testimonial {
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.testimonial:hover {
transform: translateY(-5px);
}

.stars {
color: #fbbf24;
margin-bottom: 20px;
font-size: 18px;
}

.testimonial p {
color: #666;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author {
display: flex;
justify-content: space-between;
align-items: center;
}

.testimonial-author strong {
color: #333;
font-size: 1.1rem;
}

.testimonial-author span {
color: #999;
font-size: 0.9rem;
background-color: #f3f4f6;
padding: 4px 8px;
border-radius: 4px;
}

/* Contact Section */
.contact {
padding: 80px 0;
background-color: #22c55e;
color: white;
text-align: center;
}

.contact .section-header h2 {
color: white;
}

.contact .section-header p {
color: rgba(255, 255, 255, 0.9);
}

.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin: 60px 0;
}

.contact-item {
text-align: center;
}

.contact-icon {
background-color: white;
color: #22c55e;
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 24px;
}

.contact-item h3 {
font-size: 1.3rem;
margin-bottom: 10px;
}

.contact-item p {
font-size: 1rem;
line-height: 1.5;
}

/* Footer */
.footer {
background-color: #1f2937;
color: white;
padding: 60px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-logo {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
text-align: center;
}

.footer-logo .logo {
margin: 0 auto;
}

.footer-logo .logo-text {
text-align: center;
}

.footer-logo .logo img {
vertical-align: middle;
}

.footer-logo .logo-icon {
background-color: #22c55e;
color: white;
padding: 8px;
border-radius: 6px;
margin-right: 15px;
}

.footer-logo .logo-text h3 {
font-size: 1.3rem;
margin-bottom: 2px;
}

.footer-logo .logo-text p {
font-size: 0.9rem;
color: #9ca3af;
}

.footer-section p {
color: #9ca3af;
line-height: 1.7;
}

.footer-section h4 {
font-size: 1.2rem;
margin-bottom: 20px;
color: white;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
color: #9ca3af;
margin-bottom: 8px;
line-height: 1.5;
}

.footer-contact p {
display: flex;
align-items: center;
margin-bottom: 10px;
color: #9ca3af;
}

.footer-contact i {
margin-right: 10px;
width: 16px;
}

.footer-bottom {
border-top: 1px solid #374151;
padding-top: 20px;
text-align: center;
}

.footer-bottom p {
color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
.mobile-menu-toggle {
display: block;
}

.nav-menu {
display: none;
}

.nav-menu.active {
display: flex;
flex-direction: column;
text-align: center;
width: 100%;
}

.top-bar-content {
flex-direction: column;
gap: 10px;
text-align: center;
}

.nav-content {
flex-direction: column;
text-align: center;
}

.slide-content h2 {
font-size: 2.5rem;
}

.hero-buttons {
flex-direction: column;
align-items: center;
}

.section-content {
grid-template-columns: 1fr;
gap: 40px;
}

.text-content {
order: 2;
}

.image-content {
order: 1;
}

.slider-nav {
padding: 10px;
}

.slider-nav.prev {
left: 10px;
}

.slider-nav.next {
right: 10px;
}

.gallery-nav.prev {
left: 10px;
}

.gallery-nav.next {
right: 10px;
}
}

@media (max-width: 480px) {
.slide-content h2 {
font-size: 2rem;
}

.slide-content p {
font-size: 1rem;
}

.text-content h2 {
font-size: 2rem;
}

.section-header h2 {
font-size: 2rem;
}

.gallery-carousel {
height: 300px;
}

.testimonials-grid {
grid-template-columns: 1fr;
}
}