@import "bootstrap/dist/css/bootstrap.min.css";


:root {
    --gold: #d4af73;
    --gold-hover: #e4c68f;
    --white: #fff;
    --dark: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

#app-header {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    transition: transform .4s ease, background .3s ease;
    z-index: 1000;
}

#app-header.header-hidden {
    transform: translateX(-50%) translateY(-120%);
}

#app-header.header-visible {
    transform: translateX(-50%) translateY(0);
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(10px);
}

.logo-img {
    height: 120px;
    width: auto;
}

.contact-text,
.contact-icon {
    background: #c4f036;
    color: #080808;
    transition: all .35s ease;
}


.contact-icon {
    width: 44px;
    height: 44px;
    margin-left: -1px;
}


.contact-btn:hover .contact-text,
.contact-btn:hover .contact-icon {
    background: #fff;
}


.contact-btn:hover .contact-icon {
    transform: rotate(45deg);
}


.contact-btn:hover {
    transform: translateY(-3px);
}


.contact-btn {
    transition: transform .35s ease;
}


#hero-section {
    padding-top: 200px !important;
}

@media(max-width:768px) {
    #hero-section {
        padding-top: 110px !important;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -4px;
    margin-bottom: 90px;
}


.explore-link {
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    transition: .3s ease;
}

.explore-link:hover {
    color: #fff;
}

.explore-link i {
    transition: .3s ease;
}

.explore-link:hover i {
    transform: translateY(4px);
}

@media (max-width: 768px) {
    .logo-img {
        height: 80px;
    }
}


.offcanvas {
    transition: transform .4s ease-in-out;
}


.offcanvas-backdrop.show {
    opacity: 1;
    background: rgba(8, 8, 8, .9);
    backdrop-filter: blur(8px);
}


.menu-link {
    color: #d4d4d8;
    transition: color .35s ease;
}

.menu-link .menu-title {
    transition: color .35s ease;
}


.menu-link .bi-arrow-right {
    opacity: 0;
    transform: translateX(-10px);
    color: #c4f036;
    transition: opacity .35s ease,
        transform .35s ease,
        color .35s ease;
}

.menu-link:hover,
.menu-link.active {
    color: #fff;
}

.menu-link:hover .menu-title,
.menu-link.active .menu-title {
    color: #c4f036;
}

.menu-link:hover .bi-arrow-right,
.menu-link.active .bi-arrow-right {
    opacity: 1;
    transform: translateX(0);
}

.social-btn {

    width: 42px;
    height: 42px;

    border: 1px solid #333;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #999;
    text-decoration: none;

    transition: .3s;

}



.social-btn:hover {

    color: #c4f036;
    border-color: #555;

}



#menuDrawer .display-6 {

    font-size: 2.4rem;

}



@media(max-width:768px) {

    #menuDrawer .offcanvas-body {

        padding: 2rem !important;

    }


    #menuDrawer .display-6 {

        font-size: 2rem;

    }

}





.works-content {
    position: sticky;
    top: 120px;
}

@media (max-width:991px) {

    .works-content {
        position: static;
        margin-bottom: 50px;
    }

}

.projects-stack {
    position: relative;
}

.project-card {
    position: sticky;
    top: 100px;
    height: 560px;
    margin-bottom: 100px;
    overflow: hidden;
    border-radius: 28px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    transition: all .45s ease;
}

.project-card:last-child {
    margin-bottom: 0;
}

.project-card:nth-child(1) {
    z-index: 1;
}

.project-card:nth-child(2) {
    z-index: 2;
}

.project-card:nth-child(3) {
    z-index: 3;
}

.project-card:nth-child(4) {
    z-index: 4;
}

.project-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .95) 12%,
            rgba(0, 0, 0, .55) 45%,
            rgba(0, 0, 0, .15) 70%,
            transparent);
}

.project-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.project-content small {
    color: #bfbfbf;
    display: block;
    margin-bottom: 12px;
    font-size: .9rem;

}

.project-content h3 {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;

}

.project-content p {
    color: #d2d2d2;
    line-height: 1.8;
    margin-bottom: 0;

}

.project-category {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #c4f036;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;

}

.project-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .35s;
}

.project-arrow:hover {
    background: #c4f036;
    color: #111;
    transform: rotate(45deg);

}


@media (max-width:991px) {

    .project-card {
        top: 80px;
        height: 500px;
        margin-bottom: 80px;
    }

}

@media (max-width:767px) {

    .project-card {
        top: 70px;
        height: 420px;
        margin-bottom: 60px;
        border-radius: 22px;
    }

    .project-content {
        padding: 24px;
    }

    .project-content h3 {
        font-size: 1rem;
    }

    .project-content p {
        font-size: .92rem;
    }

    .project-arrow {
        width: 44px;
        height: 44px;
    }

}



#what-we-do .services-row {
    border-radius: 28px;
    overflow: hidden;
    margin-top: 50px;
}

#what-we-do .service-card {
    padding: 50px 35px;
    height: 100%;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .18);
    border-right: 1px solid rgba(255, 255, 255, .18);

    transition: .35s ease;
}

#what-we-do .service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 20px;
    transition: .35s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: .35s ease;
}


.service-card:hover .service-icon i {
    color: #c4f036;
    transform: rotate(-10deg) scale(1.1);
}

#what-we-do .service-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

#what-we-do .service-card p {
    color: #9f9f9f;
    line-height: 1.9;
    font-size: .96rem;
    margin-bottom: 0;
}

@media (max-width:991.98px) {

    #what-we-do {
        padding: 90px 0;
    }

    #what-we-do .project-filter {
        padding: 10px 18px;
        font-size: .78rem;
    }

    #what-we-do .services-row {
        margin-top: 40px;
        row-gap: 25px;
    }

    #what-we-do .service-card {
        padding: 40px 28px;
    }

}

@media (max-width:767.98px) {

    #what-we-do {
        padding: 70px 0;
    }


    .project-filter {
        font-size: .75rem;
        padding: 10px 16px;
    }

    .services-row {
        margin-top: 35px;
        row-gap: 20px;
    }

    .service-card {
        padding: 35px 25px;
        text-align: center;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 25px;
    }


    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: .92rem;
        line-height: 1.8;
    }

}

@media (max-width:575.98px) {

    .service-card {
        padding: 30px 22px;
    }

}


#page-breadcrumb {
    padding-top: 160px;
    padding-bottom: 90px;
    overflow: hidden;

}


.breadcrumb-content {
    position: relative;
    z-index: 2;

}

#page-breadcrumb a {
    transition: .3s ease;

}


#page-breadcrumb a:hover {
    color: #c4f036 !important;

}


@media(max-width:768px) {


    #page-breadcrumb {
        padding-top: 120px;
        padding-bottom: 60px;

    }



}


.experience-card {
    height: 270px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}


.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .9),
            transparent);
}

.experience-content {
    position: absolute;
    left: 30px;
    bottom: 25px;
}

.experience-content h2 {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
}

.experience-content span {
    color: #c4f036;
}

.experience-content p {
    color: #aaa;
    margin: 0;
}

.growth-card,
.service-highlight,
.solution-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 25px;
}

.growth-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #c4f036;
    color: #000;
    font-size: 20px;
}

.growth-card h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 20px;
}

.growth-card p {
    color: #999;
    font-size: .9rem;
    line-height: 1.6;
}

.avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #111;
}

.avatars img+img {
    margin-left: -12px;
}

.growth-card h4 {
    color: #c4f036;
    margin: 0;
}

.growth-card small {
    color: #aaa;
}

.stars i {
    color: #c4f036;
    font-size: 14px;
}

.review-box small {
    color: #aaa;
}

.award-icon {
    font-size: 55px;
    color: #c4f036;
}

.service-highlight h3 {
    color: #fff;
    font-size: 1.2rem;
}

.service-highlight p {
    color: #999;
    margin: 0;
}

.solution-card {
    height: 100%;
}

.solution-card h2 {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.3;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.solution-list li {
    color: #aaa;
    padding: 12px 0;
    border-bottom:
        1px solid rgba(255, 255, 255, .1);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #c4f036;
    color: #000;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
}

.project-link span {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #000;
    color: #c4f036;
}

@media(max-width:991px) {
    .experience-card {
        height: 380px;
    }

    .solution-card h2 {
        font-size: 1.2rem;
    }
}

@media(max-width:767px) {
    .experience-card {
        height: 330px;
    }

    .experience-content h2 {
        font-size: 1.1rem;
    }

    .service-highlight {
        text-align: center;
    }
}




#projects-page {
    background: #000;
}

.project-box {
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.project-image {
    position: absolute;
    inset: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}


.project-box:hover img {
    transform: scale(1.08);
}



.project-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .95),
            rgba(0, 0, 0, .25));

}



.project-info {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
}



.project-tag {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #c4f036;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}



.project-info h3 {
    color: #fff;
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}



.project-info p {
    color: #aaa;
    max-width: 420px;
    line-height: 1.7;
}



.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 50px;
    background: #c4f036;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
}



.project-btn i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #c4f036;
    border-radius: 50%;

}




@media(max-width:768px) {

    .project-box {
        height: 380px;
        border-radius: 22px;
    }


    .project-info {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }


    .project-info h3 {
        font-size: 1.4rem;
    }

}





.contact-section {
    padding-top: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;

}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #c4f036;
    color: #000;
    font-size: 22px;
}

.contact-item small {
    color: #888;
}

.contact-item h5 {
    color: #fff;
    margin: 5px 0 0;
    font-size: 1rem;
}

.contact-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 40px;
}

.contact-input {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 14px;
    padding: 15px 18px;
    border-radius: 14px;
}

.contact-input::placeholder {
    color: #777;
}

.contact-input:focus {
    background: #181818;
    color: #fff;
    border-color: #c4f036;
    box-shadow: none;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: #c4f036;
    color: #000;
    padding: 13px 25px;
    border-radius: 50px;
    font-weight: 700;
}

.contact-btn span {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #c4f036;
    border-radius: 50%;
}

@media(max-width:768px) {
    .contact-card {
        padding: 25px;
    }


}

.footer-pill {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 14px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
}


.footer-pill:hover {
    background: #fff;
    color: #111;
}