/* ================================
   BASIC RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: white;
}

a {
    text-decoration: none;
}


/* ================================
   NAVBAR
================================ */

.navbar {

    height: 85px;

    padding: 0 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #111;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid #333;
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;
}


.logo-icon {

    width: 45px;

    height: 45px;

    border: 2px solid #d99a22;

    color: #d99a22;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    font-weight: bold;
}


.logo-text h2 {

    font-size: 21px;

    letter-spacing: 3px;

    color: white;
}


.logo-text span {

    display: block;

    font-size: 8px;

    letter-spacing: 2px;

    color: #d99a22;

    margin-top: 3px;
}


/* NAVIGATION */

.navbar nav {

    display: flex;

    gap: 35px;
}


.navbar nav a {

    color: white;

    font-size: 14px;

    transition: 0.3s;
}


.navbar nav a:hover {

    color: #d99a22;
}


/* QUOTE BUTTON */

.quote-btn {

    background: #d99a22;

    color: #111;

    padding: 13px 22px;

    font-weight: bold;

    font-size: 14px;

    transition: 0.3s;
}


.quote-btn:hover {

    background: white;
}


/* ================================
   HERO SECTION
================================ */

.hero {

    min-height: 100vh;

    padding: 150px 7% 60px;

    display: flex;

    align-items: center;

    position: relative;

    background-image:

        linear-gradient(
            rgba(0, 0, 0, 0.70),
            rgba(0, 0, 0, 0.70)
        ),

        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;

    background-position: center;
}


.hero-content {

    max-width: 750px;
}


.hero-small {

    color: #d99a22;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.hero h1 {

    font-size: clamp(55px, 7vw, 90px);

    line-height: 1;

    margin-bottom: 30px;

    letter-spacing: -2px;
}


.hero h1 span {

    color: #d99a22;

    display: block;
}


.hero-description {

    max-width: 600px;

    font-size: 18px;

    line-height: 1.8;

    color: #ddd;

    margin-bottom: 35px;
}


/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    gap: 15px;
}


.primary-btn {

    background: #d99a22;

    color: #111;

    padding: 16px 25px;

    font-weight: bold;

    transition: 0.3s;
}


.primary-btn:hover {

    background: white;

    transform: translateY(-2px);
}


.secondary-btn {

    border: 1px solid white;

    color: white;

    padding: 15px 25px;

    transition: 0.3s;
}


.secondary-btn:hover {

    background: white;

    color: #111;
}


/* ================================
   HERO BOTTOM STATS
================================ */

.hero-bottom {

    position: absolute;

    bottom: 0;

    right: 7%;

    display: flex;

    background: rgba(17, 17, 17, 0.9);
}


.hero-bottom div {

    padding: 20px 30px;

    border-left: 1px solid #444;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hero-bottom strong {

    color: #d99a22;

    font-size: 28px;
}


.hero-bottom span {

    font-size: 11px;

    color: #bbb;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 850px) {

    .navbar {

        padding: 0 5%;
    }

    .navbar nav {

        display: none;
    }

    .quote-btn {

        display: none;
    }

    .hero {

        padding: 140px 5% 160px;
    }

    .hero h1 {

        font-size: 55px;
    }

    .hero-description {

        font-size: 16px;
    }

    .hero-bottom {

        left: 5%;

        right: 5%;

        justify-content: space-around;
    }

    .hero-bottom div {

        padding: 15px;
    }

}


@media (max-width: 500px) {

    .logo-text h2 {

        font-size: 18px;
    }

    .logo-text span {

        font-size: 7px;
    }

    .hero h1 {

        font-size: 45px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }

    .hero-bottom strong {

        font-size: 22px;
    }

    .hero-bottom span {

        font-size: 8px;
    }

}
/* ================================
   ABOUT SECTION
================================ */

.about {
    padding: 110px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    background: #f7f7f7;

    color: #111;
}


/* ABOUT IMAGE */

.about-image {

    min-height: 500px;

    position: relative;

    background-image:

        linear-gradient(
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15)
        ),

        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=85");

    background-size: cover;

    background-position: center;
}


/* EXPERIENCE BADGE */

.experience-badge {

    position: absolute;

    right: -30px;

    bottom: 30px;

    background: #d99a22;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    gap: 15px;
}


.experience-badge strong {

    font-size: 42px;

    color: #111;
}


.experience-badge span {

    font-size: 13px;

    line-height: 1.4;

    color: #111;
}


/* ABOUT CONTENT */

.about-content {

    max-width: 600px;
}


.section-label {

    color: #d99a22;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.about-content h2 {

    font-size: 48px;

    line-height: 1.15;

    margin-bottom: 25px;
}


.about-content h2 span {

    color: #d99a22;

    display: block;
}


.about-content > p {

    color: #666;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 15px;
}


/* ABOUT POINTS */

.about-points {

    margin-top: 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.about-points div {

    font-size: 14px;

    font-weight: bold;

    color: #222;
}


/* ABOUT MOBILE */

@media (max-width: 850px) {

    .about {

        grid-template-columns: 1fr;

        padding: 80px 5%;

        gap: 50px;
    }

    .about-image {

        min-height: 400px;
    }

    .experience-badge {

        right: 15px;
    }

}


@media (max-width: 500px) {

    .about-content h2 {

        font-size: 36px;
    }

    .about-points {

        grid-template-columns: 1fr;
    }

}
/* ================================
   SERVICES SECTION
================================ */

.services {
    padding: 110px 7%;
    background: #111;
    color: white;
}


/* SECTION HEADING */

.services .section-heading {
    text-align: center;
    max-width: 700px;
    margin: auto;
}


.services .section-heading h2 {
    font-size: 50px;
    margin-bottom: 18px;
}


.services .section-heading h2 span {
    color: #d99a22;
}


.services .section-heading > p:last-child {
    color: #aaa;
    line-height: 1.7;
}


/* SERVICE GRID */

.service-grid {

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* SERVICE CARD */

.service-card {

    position: relative;

    background: #181818;

    padding: 40px 35px;

    min-height: 330px;

    border: 1px solid #292929;

    overflow: hidden;

    transition: 0.4s;
}


.service-card:hover {

    transform: translateY(-8px);

    border-color: #d99a22;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}


/* CARD NUMBER */

.service-number {

    position: absolute;

    top: 20px;

    right: 25px;

    font-size: 45px;

    font-weight: bold;

    color: #242424;
}


/* ICON */

.service-icon {

    font-size: 38px;

    margin-bottom: 25px;
}


/* TITLE */

.service-card h3 {

    font-size: 22px;

    margin-bottom: 15px;
}


/* DESCRIPTION */

.service-card p {

    color: #999;

    line-height: 1.7;

    font-size: 14px;

    margin-bottom: 25px;
}


/* LINK */

.service-card a {

    color: #d99a22;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 0.5px;
}


.service-card a:hover {

    color: white;
}


/* ================================
   SERVICES MOBILE
================================ */

@media (max-width: 900px) {

    .service-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .services {

        padding: 80px 5%;

    }

    .services .section-heading h2 {

        font-size: 38px;

    }

    .service-grid {

        grid-template-columns: 1fr;

    }

}
/* ================================
   PROJECTS SECTION
================================ */

.projects {
    padding: 110px 7%;
    background: #f5f5f5;
    color: #111;
}

.projects .section-heading {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.projects .section-heading h2 {
    font-size: 50px;
    margin-bottom: 18px;
}

.projects .section-heading h2 span {
    color: #d99a22;
}

.projects .section-heading > p:last-child {
    color: #666;
    line-height: 1.7;
}


/* PROJECT GRID */

.project-grid {
    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* PROJECT CARD */

.project-card {
    background: white;

    overflow: hidden;

    transition: 0.4s;

    border: 1px solid #eee;
}

.project-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* PROJECT IMAGE */

.project-image {
    height: 280px;

    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}


/* PROJECT INFO */

.project-info {
    padding: 25px;
}

.project-info span {
    color: #d99a22;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.5px;
}

.project-info h3 {
    font-size: 21px;

    margin: 10px 0;
}

.project-info p {
    color: #777;

    font-size: 14px;

    line-height: 1.6;
}


/* PROJECT MOBILE */

@media (max-width: 900px) {

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .projects {
        padding: 80px 5%;
    }

    .projects .section-heading h2 {
        font-size: 38px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

}
/* ================================
   CONTACT SECTION
================================ */

.contact {
    padding: 100px 7%;
    background: #111;
    color: white;
}

.contact-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}

.contact-heading h2 {
    font-size: 50px;
    margin-bottom: 18px;
}

.contact-heading h2 span {
    color: #d99a22;
}

.contact-heading > p:last-child {
    color: #999;
    line-height: 1.7;
}

.contact-info {
    max-width: 900px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-box {
    background: #181818;
    border: 1px solid #292929;

    padding: 35px;

    display: flex;
    gap: 20px;

    transition: 0.3s;
}

.contact-box:hover {
    border-color: #d99a22;
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 30px;
    color: #d99a22;
}

.contact-box h3 {
    margin-bottom: 12px;
    color: #d99a22;
}

.contact-box p {
    color: #bbb;
    line-height: 1.8;
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 650px) {

    .contact {
        padding: 80px 5%;
    }

    .contact-heading h2 {
        font-size: 38px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

}
/* ================================
   FOOTER
================================ */

.footer {
    background: #080808;
    color: white;
    padding: 70px 7% 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}


/* COMPANY */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;

    border: 2px solid #d99a22;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d99a22;
    font-size: 24px;
    font-weight: bold;
}

.footer-logo h2 {
    font-size: 21px;
    letter-spacing: 3px;
}

.footer-logo span {
    display: block;

    color: #d99a22;

    font-size: 8px;
    letter-spacing: 2px;

    margin-top: 3px;
}

.footer-company > p {
    color: #888;
    line-height: 1.7;
    max-width: 300px;
}


/* FOOTER HEADINGS */

.footer h3 {
    color: #d99a22;
    font-size: 15px;
    margin-bottom: 22px;
}


/* LINKS */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d99a22;
}

.footer-links p {
    color: #aaa;
    font-size: 14px;
}


/* CONTACT */

.footer-contact p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}


/* BOTTOM */

.footer-bottom {
    border-top: 1px solid #292929;

    padding: 22px 0;

    display: flex;
    justify-content: space-between;

    color: #666;

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 850px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 550px) {

    .footer {
        padding: 60px 5% 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}
.logo img {
    width: 150px;
    height: 70px;
    object-fit: contain;
    display: block;
}
.footer-logo img {
    width: 300px;
    height: 250px;
    object-fit: contain;
    display: block;
}