/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #14213d;
    background: #ffffff;
    line-height: 1.6;
}


/* =========================
   GENERAL
========================= */

a {
    text-decoration: none;
    color: inherit;
}

.section {
    padding: 100px 8%;
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}


/* =========================
   NAVIGATION
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.navbar {
    min-height: 80px;
    padding: 15px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo > span {
    font-size: 1.8rem;
    font-weight: 800;
}

.logo div {
    display: flex;
    flex-direction: column;
}

.logo strong {
    font-size: 0.95rem;
}

.logo small {
    font-size: 0.7rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-button,
.primary-button {
    display: inline-block;
    padding: 13px 24px;
    font-weight: 700;
    border-radius: 6px;
}

.nav-button {
    background: #14213d;
    color: white;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 85vh;
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-text {
    max-width: 600px;
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button {
    background: #14213d;
    color: #ffffff;
}

.secondary-button {
    padding: 13px 24px;
    border: 1px solid #14213d;
    border-radius: 6px;
    font-weight: 700;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-card {
    width: 350px;
    min-height: 400px;
    padding: 30px;
    border-radius: 25px;
    background: #14213d;
    color: white;
    box-shadow: 0 25px 60px rgba(20, 33, 61, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
}

.card-content {
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
    background: #fca311;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-heading h2,
.about-content h2,
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}


/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 35px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-number {
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    background: #f7f8fa;
}

.about-content {
    max-width: 850px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}


/* =========================
   INDUSTRIES
========================= */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.industry-grid div {
    padding: 25px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    font-weight: 700;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 100px 8%;
    text-align: center;
    background: #14213d;
    color: #ffffff;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    text-align: center;
}

.contact-info {
    margin-top: 30px;
}

.contact-info a {
    font-weight: 700;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 40px 8%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid #eeeeee;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

}