* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #171717;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ================= NAVBAR ================= */

.navbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo small {
    font-size: 8px;
    letter-spacing: 5px;
    margin-top: 5px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #ff5c35;
}

.nav-btn {
    background: #171717;
    color: white;
    padding: 13px 22px;
    border-radius: 30px;
    font-size: 13px;
}


/* ================= HERO ================= */

.hero {
    min-height: 650px;
    background: #f5f4ef;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.small-title,
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 65px;
    line-height: 1.05;
    font-weight: 800;
    max-width: 600px;
}

.hero h1 span,
.section-heading h2 span,
.about-text h2 span,
.cta h2 span {
    color: #ff5c35;
}

.hero-description {
    max-width: 550px;
    margin-top: 25px;
    line-height: 1.8;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.primary-btn {
    display: inline-block;
    background: #ff5c35;
    color: white;
    padding: 15px 27px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover {
    transform: translateY(-3px);
}

.secondary-btn {
    padding: 15px 27px;
    border: 1px solid #222;
    border-radius: 30px;
    font-size: 14px;
}


/* Hero Graphic */

.hero-card {
    height: 480px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 360px;
    height: 360px;
    background: #ff5c35;
    border-radius: 50%;
    position: absolute;
}

.main-card {
    width: 280px;
    height: 300px;
    background: #171717;
    color: white;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 45px;
    color: #ff5c35;
    margin-bottom: 35px;
}

.main-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.main-card p {
    color: #bbb;
    line-height: 1.6;
    font-size: 14px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.floating-card strong {
    display: block;
    font-size: 25px;
}

.floating-card span {
    font-size: 11px;
    color: #777;
}

.card-one {
    top: 70px;
    left: 20px;
}

.card-two {
    bottom: 70px;
    right: 10px;
}


/* ================= ABOUT ================= */

.about {
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.image-box {
    height: 430px;
    background: #171717;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid #ff5c35;
    border-radius: 50%;
}

.image-box span {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 5px;
    z-index: 1;
}

.image-box strong {
    color: #ff5c35;
    letter-spacing: 8px;
    font-size: 12px;
    margin-top: 10px;
    z-index: 1;
}

.about-text h2 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* ================= SERVICES ================= */

.services {
    background: #f5f4ef;
    padding: 120px 0;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.section-heading>p:last-child {
    color: #666;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 35px;
    min-height: 280px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #eeeeee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-number {
    color: #ff5c35;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 40px;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 15px;
}

.service-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card a {
    color: #ff5c35;
    font-size: 13px;
    font-weight: 600;
}


/* ================= INDUSTRIES ================= */

.industries {
    padding: 120px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.industry-card {
    height: 190px;
    background: #171717;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.industry-card:hover {
    background: #ff5c35;
    transform: translateY(-5px);
}

.industry-card span {
    font-size: 12px;
    opacity: 0.6;
}

.industry-card h3 {
    font-size: 25px;
}


/* ================= STATS ================= */

.stats {
    background: #ff5c35;
    color: white;
    padding: 65px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stats strong {
    display: block;
    font-size: 42px;
    font-weight: 800;
}

.stats span {
    font-size: 13px;
    opacity: 0.85;
}


/* ================= CTA ================= */

.cta {
    padding: 130px 0;
    text-align: center;
}

.cta h2 {
    font-size: 60px;
    max-width: 750px;
    margin: auto;
    line-height: 1.1;
}

.cta p {
    max-width: 550px;
    margin: 25px auto 35px;
    color: #666;
    line-height: 1.7;
}


/* ================= FOOTER ================= */

footer {
    background: #171717;
    color: white;
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: #999;
    max-width: 300px;
    line-height: 1.7;
    margin-top: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links h4 {
    margin-bottom: 10px;
}

.footer-links a,
.footer-links p {
    color: #999;
    font-size: 13px;
}

.copyright {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 12px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .service-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .nav-btn {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-card {
        height: 380px;
    }

    .circle {
        width: 270px;
        height: 270px;
    }

    .main-card {
        width: 230px;
        height: 260px;
    }

    .about,
    .services,
    .industries {
        padding: 80px 0;
    }

    .about-text h2,
    .section-heading h2 {
        font-size: 38px;
    }

    .service-grid,
    .industry-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 90px 0;
    }

    .cta h2 {
        font-size: 42px;
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }
}