* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-background .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 15s infinite ease-in-out;
}

.hero-background .bg-image:nth-child(2) {
    animation-delay: 5s;
}

.hero-background .bg-image:nth-child(3) {
    animation-delay: 10s;
}

.hero-content {
    max-width: 900px;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background: #388E3C;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.industries-section {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.industries-section h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 20px;
}

.industries-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.industry-icon img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon img {
    transform: scale(1.1);
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.industry-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.features-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #f9f9f9, #f2f2f2);
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
}

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

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.about-section {
    padding: 80px 20px;
    background: #fff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-text ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

.about-text ul li:hover {
    color: #4CAF50;
}

.about-text ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.services-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, #f9f9f9, #f2f2f2);
}

.services-section h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 20px;
}

.services-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

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

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

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.clients-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.clients-section h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 40px;
}

.clients-carousel {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.carousel-track img {
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideFade {
    0%, 33.33%, 100% {
        opacity: 0;
        transform: translateX(50px);
    }
    16.67%, 50% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .industries-section h2,
    .features-section h2,
    .about-section h2,
    .services-section h2,
    .clients-section h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .carousel-track img {
        height: 50px;
    }
}

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

    .cta-button {
        padding: 12px 24px;
    }

    .industries-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}