* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    color: #2d8659 !important;
}

.navbar-logo-svg {
    width: 45px;
    height: 45px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.nav-link:hover {
    color: #4CAF50 !important;
}

.nav-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 120px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a472a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #4CAF50 0%, #2d8659 100%);
    border: none;
    padding: 14px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049 0%, #255249 100%);
    color: white;
}

.btn-secondary-custom {
    background: white;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 12px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-3px);
}

.logo-img {
    max-width: 280px;
    width: 100%;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.services {
    padding: 100px 20px;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a472a;
    margin-bottom: 70px;
    text-align: center;
}

.service-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    border-color: #4CAF50;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    color: #4CAF50;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.service-icon svg {
    width: 80px;
    height: 80px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* 3 Column x 2 Row Grid for Services */
.services .container .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
}

.services .container .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: none !important;
}

@media (max-width: 1024px) {
    .services .container .row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services .container .row {
        grid-template-columns: 1fr !important;
    }
}

.features-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
}

.feature-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.feature-icon svg {
    width: 65px;
    height: 65px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
}

.showcase-section {
    padding: 100px 20px;
    background: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #4CAF50;
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.25);
}

.project-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #4CAF50 0%, #2d8659 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 10px;
}

.project-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-link {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #2d8659 100%);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.process-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50 0%, #2d8659 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.testimonials-section {
    padding: 100px 20px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.testimonial-quote {
    font-size: 3rem;
    color: #4CAF50;
    opacity: 0.3;
    line-height: 0;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4CAF50 0%, #2d8659 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a472a;
    margin-bottom: 40px;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

.contact {
    padding: 100px 20px;
    background: white;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

footer {
    background: #1a472a;
    color: white;
    padding: 50px 20px 30px;
    text-align: center;
}

.social-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    background: #4CAF50;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
    border-color: white;
}

.social-links a svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
    .social-links {
        gap: 15px;
    }
}
