/*====================================================
    PRIMEBUILD CONSTRUCTION
====================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

/*=========================
        HEADER
==========================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: .35s;
}

/*=========================
        NAVBAR
==========================*/

.navbar{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: .5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    transition: .3s;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #c89b3c;
    transition: .3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #c89b3c;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}



.nav-right{
    display:flex;
    align-items:center;
    gap:15px;
}

@media (max-width:768px){

    .nav-right{
        gap:10px;
    }

    .apply-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding:8px 14px;
        font-size:13px;
        white-space:nowrap;
    }

}

/*=========================
        BUTTON
==========================*/

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 6px;
    background: #c89b3c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #0f172a;
}

/*=========================
      MOBILE BUTTON
==========================*/

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background: #0f172a;
    transition: .3s;
}

/*=========================
        FOOTER
==========================*/

.footer {
    background: #0f172a;
    color: #fff;
    padding: 90px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer h2 {
    margin-bottom: 18px;
    font-size: 30px;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer p {
    color: #cbd5e1;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    transition: .3s;
}

.footer-links a:hover {
    color: #c89b3c;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact i {
    color: #c89b3c;
    width: 22px;
}

.copyright {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:991px) {

    .menu-toggle{
        display:block;
    }

    .btn-primary {
    display: inline-flex;
}

.nav-right{
        margin-left:auto;
        gap:10px;
    }

    .nav-right .btn-primary{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding:8px 14px;
        height:42px;
        font-size:13px;
    }
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: .35s;
    }

    .nav-menu.active {
        left: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}

@media(max-width:768px) {

    .navbar {
        height: 80px;
    }

    .logo {
        font-size: 22px;
    }

    .footer {
        padding: 70px 0 25px;
    }

}

/*==============================
            HERO
==============================*/

.hero {

    position: relative;

    height: 100vh;

    min-height: 800px;

    background: url("../images/hero.jpg") center center/cover no-repeat;

    display: flex;

    align-items: center;

    overflow: hidden;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(15, 23, 42, .65);

}

.hero .container {

    position: relative;

    z-index: 2;

}

.hero-content {

    max-width: 760px;

    color: #fff;

}

.hero-subtitle {

    display: inline-block;

    margin-bottom: 25px;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 700;

    color: #C89B3C;

}

.hero h1 {

    font-size: 72px;

    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 30px;

}

.hero p {

    font-size: 20px;

    color: #E2E8F0;

    max-width: 650px;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 50px;

    padding: 0 34px;

    border: 2px solid #fff;

    color: #fff;

    border-radius: 8px;

    transition: .3s;

}

.btn-outline:hover {

    background: #fff;

    color: #0F172A;

}

/*========== Mobile ==========*/

@media(max-width:768px) {

    .hero {

        min-height: 720px;

    }

    .hero h1 {

        font-size: 42px;

    }

    .hero p {

        font-size: 17px;

    }

    .hero-buttons {

        flex-direction: column;

    }

}

/*==================================
        TRUSTED SECTION
==================================*/

.trusted {

    padding: 70px 0;

    background: #ffffff;

    border-bottom: 1px solid #ececec;

}

.trusted-text {

    text-align: center;

    font-size: 14px;

    font-weight: 700;

    color: #64748b;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 45px;

}

.trusted-slider {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;

}

.trusted-item {

    flex: 1;

    min-width: 140px;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: .6;

    transition: .3s;

}

.trusted-item:hover {

    opacity: 1;

    transform: translateY(-5px);

}

.trusted-item img {

    max-width: 140px;

    max-height: 45px;

    object-fit: contain;

    filter: grayscale(100%);

    transition: .3s;

}

.trusted-item:hover img {

    filter: grayscale(0);

}

@media(max-width:768px) {

    .trusted {

        padding: 55px 0;

    }

    .trusted-slider {

        justify-content: center;

        gap: 25px;

    }

    .trusted-item {

        min-width: 120px;

    }

}

/*==================================
            ABOUT
==================================*/

.about {

    padding: 110px 0;

    background: #fff;

}

.about-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.about-image {

    position: relative;

}

.about-image img {

    width: 100%;

    border-radius: 14px;

}

.experience-box {

    position: absolute;

    bottom: 30px;

    right: -20px;

    background: #C89B3C;

    color: #fff;

    padding: 28px 32px;

    border-radius: 12px;

    text-align: center;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

.experience-box h2 {

    font-size: 48px;

    line-height: 1;

    margin-bottom: 8px;

}

.experience-box span {

    font-size: 15px;

    font-weight: 600;

}

.section-subtitle {

    display: inline-block;

    color: #C89B3C;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;

}

.about-content h2 {

    font-size: 48px;

    line-height: 1.2;

    color: #0F172A;

    margin-bottom: 25px;

}

.about-content>p {

    color: #64748B;

    font-size: 17px;

    margin-bottom: 40px;

}

.about-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 40px;

}

.feature-card {

    display: flex;

    gap: 18px;

    padding: 22px;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    transition: .3s;

}

.feature-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.feature-card i {

    font-size: 26px;

    color: #C89B3C;

    margin-top: 3px;

}

.feature-card h4 {

    margin-bottom: 8px;

    color: #0F172A;

}

.feature-card p {

    color: #64748B;

    font-size: 15px;

}

@media(max-width:992px) {

    .about-wrapper {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .about {

        padding: 70px 0;

    }

    .about-content h2 {

        font-size: 34px;

    }

    .about-features {

        grid-template-columns: 1fr;

    }

    .experience-box {

        right: 15px;

        bottom: 15px;

        padding: 20px;

    }

}

/*==============================
        PROJECTS
==============================*/

.projects {

    padding: 110px 0;

    background: #f8fafc;

}

.projects-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 60px;

}

.project-card {

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    min-height: 330px;

    cursor: pointer;

}

.project-card.large {

    grid-column: span 2;

}

.project-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.project-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(15, 23, 42, .92),
            rgba(15, 23, 42, .15));

    display: flex;

    justify-content: flex-end;

    flex-direction: column;

    padding: 35px;

}

.project-overlay span {

    color: #C89B3C;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.project-overlay h3 {

    color: #fff;

    font-size: 30px;

    margin-top: 10px;

}

.project-card:hover img {

    transform: scale(1.08);

}

@media(max-width:992px) {

    .projects-grid {

        grid-template-columns: 1fr;

    }

    .project-card.large {

        grid-column: auto;

    }

}

@media(max-width:420px) {

    .project-card {

        min-height: 260px;

    }

    .project-overlay {

        padding: 25px;

    }

    .project-overlay h3 {

        font-size: 22px;

    }

}

/*==================================
            SERVICES
==================================*/

.services {

    padding: 110px 0;

    background: #ffffff;

}

.section-title {

    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;

}

.section-title span {

    display: inline-block;

    color: #C89B3C;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.section-title h2 {

    font-size: 48px;

    line-height: 1.2;

    color: #0F172A;

    margin-bottom: 20px;

    font-weight: 700;

}

.section-title p {

    color: #64748B;

    font-size: 17px;

    line-height: 1.8;

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.service-card {

    background: #ffffff;

    padding: 40px 35px;

    border-radius: 14px;

    border: 1px solid #E5E7EB;

    transition: .35s;

    position: relative;

    overflow: hidden;

}

.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 0;

    background: #C89B3C;

    transition: .35s;

}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.service-card:hover::before {

    height: 100%;

}

.service-card i {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    background: #F8FAFC;

    color: #C89B3C;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    margin-bottom: 30px;

    transition: .35s;

}

.service-card:hover i {

    background: #C89B3C;

    color: #ffffff;

}

.service-card h3 {

    font-size: 24px;

    color: #0F172A;

    margin-bottom: 18px;

}

.service-card p {

    color: #64748B;

    line-height: 1.8;

    margin-bottom: 30px;

}

.service-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #0F172A;

    font-weight: 600;

    transition: .3s;

}

.service-card a i {

    width: auto;

    height: auto;

    background: none;

    color: #C89B3C;

    font-size: 15px;

    margin: 0;

}

.service-card:hover a {

    color: #C89B3C;

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .services {

        padding: 70px 0;

    }

    .section-title {

        margin-bottom: 50px;

    }

    .section-title h2 {

        font-size: 34px;

    }

    .services-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .service-card {

        padding: 30px 25px;

    }

}

/*==================================
            WHY CHOOSE US
==================================*/

.why-us {

    padding: 110px 0;

    background: #f8fafc;

}


.why-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.why-image {

    position: relative;

}


.why-image img {

    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 16px;

}


.why-badge {

    position: absolute;

    bottom: 30px;

    left: 30px;

    background: #C89B3C;

    color: #fff;

    padding: 30px 40px;

    border-radius: 12px;

    text-align: center;

}


.why-badge h3 {

    font-size: 48px;

    line-height: 1;

    margin-bottom: 8px;

}


.why-badge p {

    font-size: 15px;

    font-weight: 600;

}



.why-content h2 {

    font-size: 48px;

    line-height: 1.2;

    color: #0F172A;

    margin-bottom: 25px;

}


.why-content>p {

    color: #64748B;

    font-size: 17px;

    margin-bottom: 40px;

}



.why-list {

    display: flex;

    flex-direction: column;

    gap: 25px;

    margin-bottom: 40px;

}


.why-item {

    display: flex;

    gap: 20px;

}


.why-item i {

    width: 35px;

    height: 35px;

    background: #C89B3C;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;

}


.why-item h4 {

    color: #0F172A;

    font-size: 19px;

    margin-bottom: 5px;

}


.why-item p {

    color: #64748B;

}


/*==============================
        RESPONSIVE
==============================*/


@media(max-width:992px) {

    .why-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .why-image img {

        height: 500px;

    }

}


@media(max-width:768px) {

    .why-us {

        padding: 70px 0;

    }


    .why-content h2 {

        font-size: 34px;

    }


    .why-image img {

        height: 400px;

    }


    .why-badge {

        left: 15px;

        bottom: 15px;

        padding: 20px 25px;

    }


    .why-badge h3 {

        font-size: 36px;

    }

}

/*==================================
            CAREER
==================================*/

.career {

    position: relative;

    min-height: 520px;

    background: url("../images/career.jpg") center/cover no-repeat;

    display: flex;

    align-items: center;

}


.career-overlay {

    position: absolute;

    inset: 0;

    background: rgba(15, 23, 42, .75);

}


.career .container {

    position: relative;

    z-index: 2;

}


.career-content {

    max-width: 750px;

    color: #fff;

}


.career-content span {

    color: #C89B3C;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    display: block;

    margin-bottom: 20px;

}


.career-content h2 {

    font-size: 56px;

    line-height: 1.15;

    margin-bottom: 25px;

    font-weight: 800;

}


.career-content p {

    font-size: 18px;

    color: #E2E8F0;

    line-height: 1.8;

    margin-bottom: 40px;

}


.career-buttons {

    display: flex;

    gap: 20px;

}



/*==============================
        RESPONSIVE
==============================*/


@media(max-width:768px) {


    .career {

        min-height: 500px;

    }


    .career-content h2 {

        font-size: 38px;

    }


    .career-content p {

        font-size: 16px;

    }


    .career-buttons {

        flex-direction: column;

        width: 100%;

    }


    .career-buttons a {

        width: 100%;

    }

}