body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
}

.container {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

header h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5rem;
}

nav {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem 0.5rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

header p {
    margin: 0.5rem 0 0;
    font-weight: 300;
}

main {
    padding: 2rem;
}

.about, .services, .contact {
    margin-bottom: 3rem;
}

.about h2, .services h2, .contact h2 {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.about-desc {
    background: rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #4CAF50;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service {
    background: rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    border-left: 5px solid #4CAF50;
}

.service:nth-child(1) { border-left-color: #4CAF50; background: rgba(76, 175, 80, 0.1); }
.service:nth-child(2) { border-left-color: #2196F3; background: rgba(33, 150, 243, 0.1); }
.service:nth-child(3) { border-left-color: #FF9800; background: rgba(255, 152, 0, 0.1); }
.service:nth-child(4) { border-left-color: #E91E63; background: rgba(233, 30, 99, 0.1); }
.service:nth-child(5) { border-left-color: #9C27B0; background: rgba(156, 39, 176, 0.1); }
.service:nth-child(6) { border-left-color: #00BCD4; background: rgba(0, 188, 212, 0.1); }

.service:nth-child(7) { border-left-color: #FF5722; background: rgba(255, 87, 34, 0.1); }
.service:nth-child(8) { border-left-color: #607D8B; background: rgba(96, 125, 139, 0.1); }
.service:nth-child(9) { border-left-color: #795548; background: rgba(121, 85, 72, 0.1); }
.service:nth-child(10) { border-left-color: #8BC34A; background: rgba(139, 195, 74, 0.1); }

.service:hover {
    transform: translateY(-5px);
}

.service h3 {
    color: #4CAF50;
    margin-top: 0;
}

.service p {
    margin: 0;
    line-height: 1.5;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    color: #4CAF50;
    margin-top: 0;
}

.info-item p {
    margin: 0.5rem 0 0;
}

.map {
    margin-bottom: 2rem;
}

.map h3 {
    color: #4CAF50;
    text-align: center;
    margin-bottom: 1rem;
}

.map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.gallery {
    padding: 4rem 2rem;
    text-align: center;
}

.gallery h2 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.gallery p {
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }

.gallery-item:hover {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio, .industries, .usecases {
    margin-bottom: 3rem;
}

.portfolio h2, .industries h2, .usecases h2 {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.portfolio p, .industries p, .usecases p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.skills ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.skills li {
    background: rgba(76, 175, 80, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    border-left: 5px solid #4CAF50;
}

.skills li:nth-child(1) { border-left-color: #4CAF50; background: rgba(76, 175, 80, 0.1); }
.skills li:nth-child(2) { border-left-color: #2196F3; background: rgba(33, 150, 243, 0.1); }
.skills li:nth-child(3) { border-left-color: #FF9800; background: rgba(255, 152, 0, 0.1); }
.skills li:nth-child(4) { border-left-color: #E91E63; background: rgba(233, 30, 99, 0.1); }
.skills li:nth-child(5) { border-left-color: #9C27B0; background: rgba(156, 39, 176, 0.1); }
.skills li:nth-child(6) { border-left-color: #00BCD4; background: rgba(0, 188, 212, 0.1); }
.skills li:nth-child(7) { border-left-color: #8BC34A; background: rgba(139, 195, 74, 0.1); }
.skills li:nth-child(8) { border-left-color: #FFC107; background: rgba(255, 193, 7, 0.1); }
.skills li:nth-child(9) { border-left-color: #F44336; background: rgba(244, 67, 54, 0.1); }
.skills li:nth-child(10) { border-left-color: #607D8B; background: rgba(96, 125, 139, 0.1); }
.skills li:nth-child(11) { border-left-color: #3F51B5; background: rgba(63, 81, 181, 0.1); }
.skills li:nth-child(12) { border-left-color: #009688; background: rgba(0, 150, 136, 0.1); }
.skills li:nth-child(13) { border-left-color: #795548; background: rgba(121, 85, 72, 0.1); }
.skills li:nth-child(14) { border-left-color: #FF5722; background: rgba(255, 87, 34, 0.1); }
.skills li:nth-child(15) { border-left-color: #673AB7; background: rgba(103, 58, 183, 0.1); }

.experience ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.experience li {
    background: rgba(76, 175, 80, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
    border-left: 5px solid #4CAF50;
}

.experience li:nth-child(1) { border-left-color: #4CAF50; background: rgba(76, 175, 80, 0.1); }
.experience li:nth-child(2) { border-left-color: #2196F3; background: rgba(33, 150, 243, 0.1); }
.experience li:nth-child(3) { border-left-color: #FF9800; background: rgba(255, 152, 0, 0.1); }
.experience li:nth-child(4) { border-left-color: #E91E63; background: rgba(233, 30, 99, 0.1); }
.experience li:nth-child(5) { border-left-color: #9C27B0; background: rgba(156, 39, 176, 0.1); }
.experience li:nth-child(6) { border-left-color: #00BCD4; background: rgba(0, 188, 212, 0.1); }

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    nav a {
        margin: 0 0.5rem 0.5rem;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .service-list, .project-list, .industry-list, .usecase-list {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
}

.project-list, .industry-list, .usecase-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project, .industry, .usecase {
    background: rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    border-left: 5px solid #4CAF50;
}

.project:nth-child(1) { border-left-color: #4CAF50; background: rgba(76, 175, 80, 0.1); }
.project:nth-child(2) { border-left-color: #2196F3; background: rgba(33, 150, 243, 0.1); }
.project:nth-child(3) { border-left-color: #FF9800; background: rgba(255, 152, 0, 0.1); }
.project:nth-child(4) { border-left-color: #E91E63; background: rgba(233, 30, 99, 0.1); }
.project:nth-child(5) { border-left-color: #9C27B0; background: rgba(156, 39, 176, 0.1); }
.project:nth-child(6) { border-left-color: #00BCD4; background: rgba(0, 188, 212, 0.1); }
.project:nth-child(7) { border-left-color: #FF5722; background: rgba(255, 87, 34, 0.1); }
.project:nth-child(8) { border-left-color: #607D8B; background: rgba(96, 125, 139, 0.1); }

.industry:nth-child(1) { border-left-color: #4CAF50; background: rgba(76, 175, 80, 0.1); }
.industry:nth-child(2) { border-left-color: #2196F3; background: rgba(33, 150, 243, 0.1); }
.industry:nth-child(3) { border-left-color: #FF9800; background: rgba(255, 152, 0, 0.1); }
.industry:nth-child(4) { border-left-color: #E91E63; background: rgba(233, 30, 99, 0.1); }
.industry:nth-child(5) { border-left-color: #9C27B0; background: rgba(156, 39, 176, 0.1); }
.industry:nth-child(6) { border-left-color: #00BCD4; background: rgba(0, 188, 212, 0.1); }
.industry:nth-child(7) { border-left-color: #FF5722; background: rgba(255, 87, 34, 0.1); }
.industry:nth-child(8) { border-left-color: #607D8B; background: rgba(96, 125, 139, 0.1); }

.project:hover, .industry:hover, .usecase:hover {
    transform: translateY(-5px);
}

.project h3, .industry h3, .usecase h3 {
    color: #4CAF50;
    margin-top: 0;
}

.highlight {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}