* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(10, 12, 16, 0.88),
            rgba(10, 12, 16, 0.88)
        ),
        url("../img/bg.png") center center fixed;

    background-size: cover;
    background-repeat: no-repeat;

    color: #ffffff;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}


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

/* Powered By */
.container_powered_by {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #0b0d11;
    border-bottom: 1px solid #1f2228;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo img {
    height: 200px;
	width: 200px;
}

/*.logo_client_div {
    height: 80px;
	width: 80px;
	
}
*/

.logo_client {
    height: 200px;
	width: 200px;
	 margin:auto auto;
}

.logo_client img {
    height: 200px;
	width: 200px;
	
}


/* Navigation */
nav a {
    color: #cfd2d8;
    text-decoration: none;
    margin-left: 28px;
    font-size: 15px;
    transition: 0.2s;
}

nav a:hover {
    color: #ffffff;
}

/* Buttons */
.btn {
    background: #e10600;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.btn:hover {
    background: #ff1c14;
}

.btn-large {
    padding: 14px 26px;
    font-size: 16px;
}

/* Hero section */
.hero {
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 17px;
    color: #cfd2d8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    border-top: 1px solid #1f2228;
    padding: 25px 0;
    text-align: center;
    color: #8b8f98;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    nav {
        display: none; /* nākamais solis – mobilais menu */
    }
}
