/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(107, 163, 82, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-title-nav-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hiddn;
}

.nav-logo {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.logo {
    height: 150px;
    width: auto;
}

.company-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #6ba352;
    word-wrap: break-word;
    hyphens: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6ba352;
}

.cta-button {
    background: linear-gradient(135deg, #6ba352, #4b743a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 163, 82, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 163, 82, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #6ba352;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    padding-top: 100px; /* Account for fixed navbar */
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(107, 163, 82, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(75, 116, 58, 0.1) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
    word-wrap: break-word;
    hyphens: auto;
}

.highlight {
    background: linear-gradient(135deg, #6ba352, #4b743a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: linear-gradient(135deg, #6ba352, #4b743a);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 163, 82, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 163, 82, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #6ba352;
    border: 2px solid #6ba352;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #6ba352;
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.floating-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 163, 82, 0.15);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(107, 163, 82, 0.1);
}

.floating-card:nth-child(2) {
    margin-left: 40px;
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    margin-left: 20px;
    animation-delay: -4s;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.floating-card h3 {
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.floating-card p {
    color: #718096;
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(107, 163, 82, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 163, 82, 0.15);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6ba352, #4b743a);
    color: white;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.services-content {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
}

.services-text > p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.service-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6ba352, #4b743a);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.service-details p {
    color: #4a5568;
    line-height: 1.6;
}

.services-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 20px;
    height: 300px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 163, 82, 0.15);
}

.chart-bar {
    width: 60px;
    background: linear-gradient(to top, #6ba352, #4b743a);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    animation: chartGrow 1s ease-out;
}

.chart-bar:hover {
    transform: scale(1.05);
}

.chart-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
    text-align: center;
    width: 80px;
}

@keyframes chartGrow {
    from { height: 0 !important; }
    to { height: var(--final-height); }
}

/* Process Section */
.process {
    padding: 120px 0;
    background: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6ba352, #4b743a);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(107, 163, 82, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.step-connector {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6ba352, #4b743a);
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: white;
}



.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
    border-radius: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(107, 163, 82, 0.2);
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.contact-details p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-form-container {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(107, 163, 82, 0.1);
    box-shadow: 0 10px 30px rgba(107, 163, 82, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6ba352;
    box-shadow: 0 0 0 3px rgba(107, 163, 82, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #6ba352, #4b743a);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 163, 82, 0.3);
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 163, 82, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6ba352, #4b743a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #6ba352;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
    display: flex;
}

.footer-content {
    display: flex;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.logo-title {
    display: flex;
    color: #6ba352;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 60px;
    width: auto;
    
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #6ba352;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6ba352;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6ba352;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-visual {
        gap: 20px;
    }

    .floating-card {
        margin-left: 0 !important;
        padding: 25px;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-steps {
        flex-direction: column;
        gap: 50px;
    }

    .step-connector {
        display: none;
    }
    .contact-section {
        display: flex;
        justify-content: center;   /* Center horizontally */
        align-items: center;       /* Center vertically (optional) */
        padding: 60px 20px;
        width: 100%;
        box-sizing: border-box;
        /* Optional for vertical centering */
        min-height: 100vh;
    
    }
    
    .contact-content {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
        /*grid-template-columns: 1fr;*/
        gap: 50px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-submit {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .logo {
        height: 80px; /* Reduce logo size on mobile */
    }

    .company-title {
        font-size: 1.2rem; /* Adjust title font size */
        white-space: nowrap; /* Prevent text from wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Adds "..." if needed */
        max-width: 100%;
    }

    .logo-title-nav-bar {
        gap: 5px;
        flex-shrink: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero .container {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-actions {
        margin-bottom: 30px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .floating-card {
        padding: 20px;
    }

    .contact-form-container {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-text h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
