body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

    .hero-slider .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .hero-slider .slide.active {
            opacity: 1;
            z-index: 1;
        }

    .hero-slider .content {
        color: #fff;
        text-align: center;
        background: rgba(0,0,0,0.5);
        padding: 30px;
        border-radius: 12px;
    }

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
}

    .slider-controls span {
        cursor: pointer;
        font-size: 2rem;
        color: #fff;
        user-select: none;
        transition: transform 0.2s;
    }

        .slider-controls span:hover {
            transform: scale(1.2);
        }

.section {
    padding: 60px 20px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
}

    .card img {
        width: 100%;
        border-radius: 8px;
    }

    .card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

.team-members {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s;
}

.team-member .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    transition: opacity 0.5s;
    padding: 10px;
}

.team-member .img-wrapper:hover img {
    transform: scale(1.1);
}

.team-member .img-wrapper:hover .overlay {
    opacity: 1;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .client-logos img {
        max-width: auto;
        border-radius: 8px;
        transition: transform 0.3s;
    }

        .client-logos img:hover {
            transform: scale(1.05);
        }

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

    .site-header.scrolled {
        background: rgba(255,255,255,0.95);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .site-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .site-header .logo img {
        margin-left: 15px;
        height: 60px;
    }

.site-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;    
    margin-right: 15px;
}

.site-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;    
}

.site-header.scrolled .site-nav a {
    color: #333;
}

.site-nav a:hover {
    color: #007acc;
}


    /*footer*/
.site-footer {
    background: #222;
    color: #fff;
    padding: 60px 20px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

    .footer-container h3 {
        margin-bottom: 15px;
    }

    .footer-container p, .footer-container li, .footer-container a {
        color: #ccc;
        line-height: 1.6;
        text-decoration: none;
    }

    .footer-container ul {
        list-style: none;
        padding: 0;
    }

    .footer-container li {
        margin-bottom: 10px;
    }

    .footer-container a:hover {
        color: #007acc;
    }

.footer-socials a {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px;
    background: #333;
    border-radius: 4px;
    transition: background 0.3s;
}

    .footer-socials a:hover {
        background: #007acc;
    }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
    color: #888;
}
