﻿:root {
    --dark: #07172f;
    --dark-2: #0d203d;
    --blue: #0d6efd;
    --text: #0b1f3a;
    --muted: #6b7280;
    --light: #f5f8fc;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
}

main {
    width: 100%;
    overflow-x: hidden;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 88px;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .5px;
    white-space: nowrap;
}

    .logo span {
        display: block;
        font-size: 10px;
        letter-spacing: 6px;
        margin-top: 4px;
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .main-nav a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        padding: 10px 16px;
        border-radius: 8px;
        transition: all .25s ease;
    }

        .main-nav a:hover {
            background: rgba(255,255,255,.08);
        }

    .main-nav .active {
        color: white;
        background: rgba(76,124,255,.20);
        box-shadow: 0 0 20px rgba(76,124,255,.25);
    }

.header-btn {
    background: var(--blue);
    color: white;
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 7px;
    font-weight: 700;
    white-space: nowrap;
}

/* Hero */

.hero {
    background: #07172f;
    min-height: 850px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 0 80px;
    overflow: hidden;
}


.hero-left {
    color: white;
    max-width: 800px;
}


.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}


    .hero-right img {
        width: 100%;
        max-width: 1100px;
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0,0,0,.45);
    }

.hero-text {
    max-width: 680px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
}

    .hero h1 span {
        color: var(--blue);
    }

.hero p {
    color: rgba(255,255,255,.8);
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 36px;
}

.hero-button,
.hero-button-outline {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

.hero-button {
    background: var(--blue);
    color: white;
}

.hero-button-outline {
    border: 1px solid rgba(255,255,255,.9);
    color: white;
}

/* Benefits */

.benefits {
    width: min(1500px, calc(100% - 60px));
    margin: -46px auto 0;
    position: relative;
    z-index: 2;
    background: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
    border-radius: 8px;
    overflow: hidden;
}

.benefit {
    padding: 30px;
    border-right: 1px solid #e8eef6;
}

    .benefit:last-child {
        border-right: none;
    }

    .benefit h3 {
        margin: 0 0 10px;
        font-size: 22px;
    }

    .benefit p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55;
    }

/* General Sections */

.section {
    width: min(1400px, calc(100% - 80px));
    margin: auto;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 52px;
}

    .section-title small {
        color: var(--blue);
        font-weight: 800;
    }

    .section-title h2 {
        font-size: 40px;
        margin: 10px 0 0;
    }

/* Services */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,.1);
    border: 1px solid #e4eaf2;
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(0,0,0,.15);
    }

    .service-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

    .service-card h3 {
        font-size: 26px;
        margin: 28px 30px 10px;
    }

    .service-card p {
        color: var(--muted);
        line-height: 1.7;
        margin: 0 30px 30px;
    }

/* Process */

.process-section {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 90px 70px;
}

    .process-section small {
        color: var(--blue);
        font-weight: 800;
    }

    .process-section h2 {
        font-size: 42px;
        margin: 12px 0;
    }

    .process-section > p {
        color: rgba(255,255,255,.75);
        margin: 0;
    }

.process-grid {
    max-width: 1400px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.process-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 34px 24px;
}

.circle {
    width: 58px;
    height: 58px;
    background: var(--blue);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    font-size: 22px;
    font-weight: 800;
}

/* CTA */

.cta-section {
    width: min(1180px, calc(100% - 48px));
    margin: 90px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cta-left small {
    color: var(--blue);
    font-weight: 800;
}

.cta-left h2 {
    font-size: 44px;
    margin: 12px 0;
}

.cta-left p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-right img {
    width: 100%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

/* Page Hero */

.page-hero {
    background: linear-gradient(90deg, rgba(7,23,47,.96), rgba(7,23,47,.78)), url("/images/HomePageWebsites.png") center/cover no-repeat;
    color: white;
    padding: 105px 70px;
}

.why-page-hero {
    background: linear-gradient( 90deg, rgba(7,23,47,.96), rgba(7,23,47,.78) ), url("/images/handshake.png");
    background-size: cover;
    background-position: center;
}

.hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 48px;
    margin: 0 0 12px;
}

.page-hero p {
    font-size: 20px;
    max-width: 620px;
    line-height: 1.6;
}

/* Other Pages */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.feature-card,
.stat-box,
.contact-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0,0,0,.1);
    border: 1px solid #e4eaf2;
    padding: 34px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.stats {
    display: grid;
    gap: 18px;
}

.stat-box {
    text-align: center;
    background: var(--dark);
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d6deea;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 16px;
    font: inherit;
}

.send-btn {
    width: 100%;
    border: none;
    background: var(--blue);
    color: white;
    padding: 16px;
    border-radius: 7px;
    font-weight: 800;
}

/* Footer */

.site-footer {
    background: var(--dark);
    color: white;
}

.footer-grid {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.site-footer h2 {
    font-size: 24px;
    line-height: 1.05;
    margin: 0 0 18px;
}

    .site-footer h2 span {
        display: block;
        font-size: 10px;
        letter-spacing: 6px;
        margin-top: 5px;
    }

.site-footer p {
    color: rgba(255,255,255,.75);
    line-height: 1.65;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    margin-bottom: 12px;
}

    .site-footer a:hover {
        color: var(--blue);
    }

.footer-bottom {
    text-align: center;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55);
}

/* Mobile */

@media (max-width: 950px) {
    .site-header {
        height: auto;
        padding: 22px;
        flex-direction: column;
        gap: 18px;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero {
        padding: 80px 28px;
        min-height: auto;
    }

        .hero h1 {
            font-size: 42px;
        }

        .hero p {
            font-size: 18px;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefits,
    .service-grid,
    .process-grid,
    .cta-section,
    .features-grid,
    .about-grid,
    .contact-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-right: none;
        border-bottom: 1px solid #e8eef6;
    }

    .process-section {
        padding: 70px 24px;
    }

    .page-hero {
        padding: 80px 28px;
    }
}

@media(max-width:1000px) {

    .hero {
        grid-template-columns: 1fr;
        padding: 80px 30px;
        text-align: center;
    }

    .hero-right {
        order: -1;
    }

    .hero h1 {
        font-size: 48px;
    }
}

.service-section {
    width: min(1400px, calc(100% - 80px));
    margin: auto;
    padding: 100px 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.service-content small {
    color: #0d6efd;
    font-weight: bold;
}

.service-content h2 {
    font-size: 48px;
    margin-top: 15px;
    color: #07172f;
}

.service-content p {
    color: gray;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    line-height: 2.4;
}

.why-section {
    background: #07172f;
    color: white;
    padding: 100px 0;
    text-align: center;
}

    .why-section small {
        color: #0d6efd;
        font-weight: bold;
    }

    .why-section h2 {
        font-size: 48px;
        margin-bottom: 60px;
    }

.why-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    padding: 40px;
}

    .why-card p {
        color: rgba(255,255,255,.7);
    }

@media(max-width:1000px) {

    .service-row,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

.contact-info small {
    color: #0d6efd;
    font-weight: bold;
}

.contact-info h2 {
    font-size: 48px;
    margin-top: 15px;
    color: #07172f;
}

.contact-info p {
    color: gray;
    line-height: 1.8;
}

.contact-box {
    background: white;
    border: 1px solid #e6edf5;
    border-radius: 15px;
    padding: 30px;
    margin-top: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.contact-form small {
    color: #0d6efd;
    font-weight: bold;
}

.contact-form h2 {
    font-size: 42px;
    margin-top: 15px;
}

.contact-form p {
    color: gray;
    margin-bottom: 30px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-box h3 {
    color: #07172f;
}

/* HERO */


/* CENTER SECTION */

.difference-section {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    padding: 90px 0;
}

.difference-header {
    text-align: center;
    margin-bottom: 60px;
}

    .difference-header small {
        color: #3467ff;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .difference-header h2 {
        font-size: 52px;
        margin: 20px 0;
        color: #07172f;
    }

    .difference-header p {
        max-width: 700px;
        margin: auto;
        line-height: 1.8;
        color: #666;
    }


/* CARDS */

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.difference-card {
    border: 1px solid #e8edf4;
    border-radius: 12px;
    background: white;
    padding: 35px;
    min-height: 230px;
}

    .difference-card i {
        color: #3467ff;
        font-size: 48px;
        margin-bottom: 20px;
    }

    .difference-card h3 {
        font-size: 26px;
        margin-bottom: 20px;
        color: #07172f;
    }

    .difference-card p {
        color: #666;
        line-height: 1.8;
    }


/* CTA */

.bottom-cta {
    background: #07172f;
    padding: 50px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .bottom-cta h2 {
        color: white;
        font-size: 42px;
    }

    .bottom-cta p {
        color: rgba(255,255,255,.7);
    }

.cta-button {
    background: #3467ff;
    color: white;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 700;
}

*:focus,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.portfolio-carousel {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-header {
    color: white;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-carousel {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-header {
    color: white;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-image-container {
    height: 650px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.portfolio-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    transition: all .4s ease;
}

    .portfolio-image.after {
        transform: scale(1.03);
        box-shadow: 0 0 40px rgba(79,124,255,.30), 0 25px 60px rgba(0,0,0,.35);
    }

.portfolio-dots {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4b5563;
    cursor: pointer;
    transition: .25s;
}

    .dot:hover {
        transform: scale(1.2);
    }

    .dot.active {
        background: #4c7cff;
    }

.success-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 520px;
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #4c7cff;
    color: white;
    font-size: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
