/* Reset and basics */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: rgb(12, 12, 12);
}

/* Background video styles */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 80, 0.4); /* blue tint */
    z-index: -1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #b6aacf;
    padding: 10px 30px;
}

.header nav a {
    color: rgb(22, 22, 22);
    text-decoration: none;
    margin: 0 10px;
}

.header nav a:hover {
    text-decoration: underline;
}

.logo {
    height: 50px;
}
/* Background Video */
#bg-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.22);
}

/* Particle Layer */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}



/* Our Clients Section */
.clients-section {
    padding: 60px 20px;
    
    color: #ffffff;
    text-align: center;
}

.clients-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.clients-section p {
    font-size: 1rem;
    margin-bottom: 40px;
}

.clients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.client-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 300px;
    padding: 20px;
    text-align: left;
    transition: transform 0.4s, box-shadow 0.4s;
}

.client-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #f0f8ff;
}

.client-card ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Animation on hover */
.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
