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

:root {
    --primary-color: #26c6d0;
    --text-primary: #444444;
    --text-secondary: #444444;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
}

body {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    line-height: 1.6;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.lang-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.lang-btn:hover {
    transform: scale(1.1);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.25px);
}

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

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content h1 {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.scroll-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

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

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.section-title .red-dot {
    color: #ff0000;
}

.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    width: 60%;
    margin-left: 20%;
    text-align: center;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.awards {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 50%, #80deea 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.awards::before,
.awards::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.awards::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: 10%;
}

.awards::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 15%;
}

.awards-content {
    text-align: center;
    margin-bottom: 40px;
}

.awards-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.awards-count {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.awards-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.awards-scroll {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.awards-track {
    display: flex;
    animation: scrollLeft 60s linear infinite;
}

.awards-track-bottom {
    display: none;
}

.awards-track img {
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    margin-right: 60px;
}

.awards-track img:hover {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .awards-scroll {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        overflow: hidden;
        height: 140px;
    }
    
    .awards-track {
        display: flex;
        animation: scrollLeftMobile 30s linear infinite;
    }
    
    .awards-track-bottom {
        display: flex;
        animation: scrollLeftMobile 30s linear infinite;
    }
    
    .awards-track img {
        height: 50px;
        margin-right: 30px;
    }
}

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

.awards-carousel {
    padding: 60px 0;
    background: #ffffff;
}

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

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.award-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.award-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.award-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}

.award-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: #00d4d4;
    margin: 0;
    text-transform: uppercase;
}

.award-level {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff4444;
    margin: 0;
    text-transform: uppercase;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #00d4d4;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    opacity: 0.8;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicator {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.indicator-track {
    width: 200px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.indicator-progress {
    height: 100%;
    background: #00d4d4;
    border-radius: 2px;
    transition: width 0.5s ease;
}

@media (max-width: 768px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .award-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .award-item img {
        width: 60px;
        height: 60px;
    }
    
    .award-title {
        font-size: 0.75rem;
    }
    
    .award-subtitle {
        font-size: 0.65rem;
    }
    
    .award-level {
        font-size: 0.6rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.services {
    position: relative;
    padding: 100px 0;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title {
    color: white;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
}

.service-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(0, 212, 212, 0.2);
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-card h3 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.process {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.clients {
    padding: 100px 0;
    background: var(--bg-white);
}

.clients-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.clients-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-item:hover {
    transform: scale(1.1);
}

.client-item:hover img {
    opacity: 1;
}

.works {
    padding: 100px 0;
    background: var(--bg-light);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.work-item {
    position: relative;
    overflow: hidden;
}

.work-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 212, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.work-item:hover .work-overlay {
    background: rgba(0, 212, 212, 0.9);
    opacity: 1;
}

.work-overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #00b8b8;
}

.footer {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #00b8b8;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .lang-btn {
        margin-right: 0;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    .logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon img {
        width: 40px;
        height: 40px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .work-item img {
        height: 200px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}