body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #222;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26,35,126,0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 16px rgba(60,60,60,0.10);
}
.minimal-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(60,60,60,0.04);
    border: none;
}
.glass-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px) saturate(1.2);
    box-shadow: 0 2px 16px rgba(60,60,60,0.08);
    border-bottom: 1px solid rgba(200,200,200,0.25);
}
header {
    background: #1a237e;
    color: #fff;
    padding: 20px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.logo-img {
    height: 44px;
    width: 44px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(60,60,60,0.10);
}
.logo-img.minimal-logo {
    height: 48px;
    width: 48px;
    border-radius: 10px;
    background: transparent;
    box-shadow: 0 4px 18px rgba(60,60,60,0.13);
    border: none;
}
.brand-name {
    font-size: 1.6em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(60,60,60,0.10);
}
.brand-name {
    font-size: 1.7em;
    font-weight: 700;
    color: #232946;
    letter-spacing: 1px;
    text-shadow: none;
}
nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    padding: 6px 0;
    border-bottom: none;
    transition: color 0.2s;
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
    text-decoration: none;
}
nav a:hover {
    color: #ffb300;
    border-bottom: none;
}
nav a {
    color: #232946;
    font-weight: 400;
    font-size: 1.08em;
    letter-spacing: 0.5px;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s, color 0.2s;
}
nav a:hover {
    color: #3a3a5d;
    border-bottom: 2px solid #3a3a5d;
}
.hero {
    background: linear-gradient(90deg, #3949ab 60%, #ffb300 100%);
    color: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
}
.redesigned-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(120deg, #232946 60%, #3a3a5d 100%);
    padding-top: 110px;
    overflow: hidden;
}
.hero-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
}
.hero-bg-logo img {
    width: 340px;
    height: 340px;
    filter: blur(1px) grayscale(0.2);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}
.hero-title {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 36px;
    color: #e3e3e3;
    font-weight: 400;
}
.cta-btn {
    display: inline-block;
    margin-top: 30px;
    background: #ffb300;
    color: #222;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(60,60,60,0.10);
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #fff;
    color: #3949ab;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
section {
    padding: 40px 0;
}
.about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.about-img img {
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(60,60,60,0.10);
}
.about-text {
    flex: 1;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0;
    list-style: none;
}
.services-list li {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(60,60,60,0.07);
    padding: 20px;
    text-align: center;
    font-weight: 500;
}
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(60,60,60,0.08);
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(60,60,60,0.13);
}
.service-icon {
    font-size: 2.5em;
    margin-bottom: 12px;
    display: block;
}
#testimonials {
    background: #f1f3f6;
    padding: 50px 0;
}
.testimonials-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(60,60,60,0.07);
    padding: 28px 22px;
    max-width: 340px;
    font-style: italic;
    color: #333;
}
.testimonial-card span {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #3949ab;
    font-weight: 500;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}
form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}
form button {
    background: #1a237e;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
form button:hover {
    background: #ffb300;
    color: #222;
}
.contact-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(60,60,60,0.07);
    padding: 32px 24px;
    max-width: 500px;
    margin: 0 auto;
}
.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 15px;
}
.form-row input {
    flex: 1;
}
.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-social a {
    font-size: 1.5em;
    margin-left: 18px;
    color: #ffb300;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #fff;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.95em;
}
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1 1 320px;
    text-align: left;
}
.hero-logo {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo img {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(60,60,60,0.13);
}
.creative-header {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    z-index: 100;
    animation: fadeInHeader 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInHeader {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.creative-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    background: rgba(255,255,255,0.0);
    border-radius: 18px;
    box-shadow: none;
    padding: 0 0;
}
.creative-logo-link {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    background: none;
}
.creative-logo {
    height: 54px;
    width: 54px;
    border-radius: 12px;
    background: transparent;
    box-shadow: 0 6px 32px 0 rgba(40,40,40,0.18), 0 1.5px 6px 0 rgba(0,0,0,0.10);
    border: none;
    transition: box-shadow 0.2s;
}
.creative-logo-link:hover .creative-logo {
    box-shadow: 0 10px 40px 0 rgba(40,40,40,0.22), 0 2px 8px 0 rgba(0,0,0,0.13);
}
.creative-brand {
    font-size: 2em;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18);
    font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
}
nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    padding: 6px 0;
    border-bottom: none;
    transition: color 0.2s;
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
    text-decoration: none;
}
nav a:hover {
    color: #ffb300;
    border-bottom: none;
}
#technologies {
    background: #f6f7fa;
    padding: 48px 0 44px 0;
    text-align: center;
}
#technologies h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 32px;
    color: #232946;
}
.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
    max-width: 900px;
    margin: 0 auto;
}
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    color: #232946;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(60,60,60,0.07);
    padding: 22px 28px 16px 28px;
    min-width: 110px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.tech-item:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 24px rgba(60,60,60,0.13);
}
.tech-icon {
    font-size: 2.1em;
    margin-bottom: 10px;
}
@media (max-width: 900px) {
    .main-header {
        padding: 0 0;
    }
    .minimal-header {
        padding: 0 0;
    }
    .glass-header {
        padding: 0 0;
    }
    .header-flex {
        flex-direction: column;
        gap: 10px;
        min-height: 60px;
    }
    .about-flex {
        flex-direction: column;
        gap: 24px;
    }
    .footer-flex {
        flex-direction: column;
        gap: 10px;
    }
    .testimonials-cards {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    .hero-flex {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .redesigned-hero {
        padding-top: 90px;
    }
    .hero-bg-logo img {
        width: 200px;
        height: 200px;
    }
    .hero-title {
        font-size: 2em;
    }
    .creative-header {
        top: 0;
    }
    .creative-header-flex {
        flex-direction: column;
        gap: 10px;
        min-height: 60px;
    }
    .creative-logo {
        height: 40px;
        width: 40px;
    }
    .creative-brand {
        font-size: 1.2em;
    }
    nav ul {
        gap: 18px;
    }
    .tech-logos {
        gap: 18px 10px;
    }
    .tech-item {
        min-width: 80px;
        padding: 16px 10px 10px 10px;
        font-size: 1em;
    }
    #technologies h2 {
        font-size: 1.3em;
    }
}
