---

# style.css

```css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 28px;
    font-weight: 700;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}
nav a:hover {
    color: #555;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(to bottom right, #ffffff, #f5f7fa);
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #111;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: #111;
    color: white;
}

.primary-btn:hover {
    background: #000;
}

.secondary-btn {
    background: #f1f1f1;
    color: #111;
}

.hero-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.online-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
}

.payment-demo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}



section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

.services-grid,
.portfolio-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card,
.portfolio-card,
.stat-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-card:hover,
.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card {
    overflow: hidden;
    padding: 0;
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-content {
    padding: 25px;
}

.stats {
    background: #111;
    color: white;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.stat-box h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact {
    background: #f8f9fa;
}

form {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

input,
textarea,
select {
    width: 100%;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: 'Inter', sans-serif;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: white;
    outline: none;
}

input,
select {
    height: 56px;
    line-height: 56px;
}

textarea {
    padding: 16px;
    min-height: 150px;
    resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
    border-color: #111;
}
.form-group {
    margin-bottom: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.full-btn {
    width: 100%;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 35px 0;
}

@media(max-width: 768px) {

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 32px;
    }

}
@media (prefers-color-scheme: dark) {

    body {
        background: #0f0f0f;
        color: #f5f5f5;
    }

    header {
        background: rgba(15,15,15,0.95);
        border-bottom: 1px solid #2b2b2b;
    }

    nav a {
        color: #f5f5f5;
    }

    nav a:hover {
        color: #999;
    }

    .hero {
        background: linear-gradient(to bottom right, #0f0f0f, #181818);
    }

    .hero p,
    .section-title p,
    .portfolio-content p,
    .service-card p {
        color: #a1a1aa;
    }

    .hero-card,
    .service-card,
    .portfolio-card,
    form {
        background: #1a1a1a;
        border: 1px solid #2b2b2b;
    }

    .payment-item {
        background: #222;
    }

    input,
    textarea,
    select {
        background: #181818;
        color: #f5f5f5;
        border: 1px solid #333;
    }

    input::placeholder,
    textarea::placeholder {
        color: #888;
    }

    .secondary-btn {
        background: #222;
        color: #f5f5f5;
    }

    footer {
        background: #0a0a0a;
    }
    .contact {
    background: #121212;
}
.success-message {
    background: #1f2937;
    color: #d1fae5;
    border: 1px solid #10b981;
}

.error-message {
    background: #2b1a1a;
    color: #fecaca;
    border: 1px solid #ef4444;
}

}