/* Custom carousel indicators: small circles, active dark, normal white */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #222;
    opacity: 1;
    margin: 0 4px;
    transition: background-color 0.2s, border-color 0.2s;
}
.carousel-indicators .active {
    background-color: #111;
    border-color: #111;
}
/* Force .container to always be 100% width */
.container {
    width: 96% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure hero section starts from top on mobile and tablet */
@media (max-width: 991.98px) {
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .navbar-brand {
        margin: 0 !important;
    }
    .carousel-caption{text-align: center !important;}
    .carousel-caption h2, .carousel-caption p, .carousel-caption a{
        text-align: center;
    }
}

body {
    font-family: "Poppins", sans-serif;
    color: #333
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    font-weight: 300;

}

header {
    transition: background-color 0.4s cubic-bezier(.4, 0, .2, 1);
}

.navbar-brand {
    width: 20%;
    margin: 0 auto
}

.navbar-brand {
    color: #fff !important
}

.nav-link {
    font-family: "Rosario", sans-serif;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px
}

.nav-link:hover {
    color: #d4af37 !important
}

.hero {
    position: relative;
    height: 100%
}

.carousel-inner {
    position: relative;
}

.carousel-inner::before {
    content: '';
    background-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.067) 70%);
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    opacity: 0.8;
    top: 0;
    left: 0;
    pointer-events: none;
}

.carousel-inner img {
    width: 100vw;
    max-width: 100%;
    height: auto;
    object-fit: cover
}

.carousel-caption h2 {
    font-size: 5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px
}

@media (max-width:768px) {
    .carousel-inner img {
        min-height: 450px
    }

    .carousel-caption h2 {
        font-size: 3rem;

    }
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 2px
}

.hero p {
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif
}

.carousel-caption {
    bottom: 0 !important;
    margin: auto;
    top: 0 !important;
    width: 85%;
    height: 25%;
    left: 0 !important;
    right: 0 !important;
    z-index: 4;

}

.stat-box {
    background: #232323;
    color: #fff;
    padding: 20px 30px;
    max-width: 140px;
    margin: 10px 20px;
    box-shadow: 0 2px 8px rgb(0 0 0 / .05);
    max-height: 140px
}

.products h2,
.products h5,
.products h4 {
    color: #fff
}

.products .card {
    border: none;
    background: #232323
}

.products .card-title {
    font-size: 1.1rem
}

.products .img-fluid {
    border-radius: 8px
}

.our-project {
    padding: 100px 0 70px
}

.our-Project-nav {
    text-align: center;
    margin: 60px auto
}

.our-Project-nav ul {
    list-style: none;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    padding: 0;
    margin: 0
}

.our-Project-nav ul li a {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.2em;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: #006F2E;
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0)
}

.our-Project-nav ul li a:after {
    top: -8px;
    bottom: auto;
    left: 0
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
    transform-origin: bottom left;
    transform: scaleX(1)
}

.project-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px
}

.project-featured-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgb(0 0 0 / .6) 0%, #fff0 111.33%);
    z-index: 0
}

.project-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(20px);
    border-radius: 50%;
    transform: translate(-50%, -30%);
    transition: all 0.3s ease-in-out;
    z-index: 1
}

.project-item:hover .project-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%)
}

.project-btn a {
    width: 100px;
    height: 100px;
    background: var(--dark-divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out
}

.project-btn img {
    max-width: 24px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out
}

.project-btn a:hover {
    background: var(--primary-color)
}

.project-btn a:hover img {
    transform: rotate(0deg)
}

.project-featured-image img {
    width: 100%;
    aspect-ratio: 1 / .79;
    object-fit: cover
}

.project-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 40px
}

.project-content h3,
.project-content h2 {
    color: #fff;
    text-transform: capitalize;
    position: relative;
    z-index: 1
}

.project-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px
}

.project-content h2 {
    font-size: 20px;
    font-weight: 700
}

.project-content h2 a {
    color: inherit
}

.newsletter {
    border-top: 2px solid #232323;
    border-bottom: 2px solid #232323
}

.stores h3 {
    color: #fff
}

form input[type="email"] {
    padding: 10px 0;
    border: none;
    border-radius: 0;
    background: #f8f8f8;
    border-bottom: 1px solid #000
}

.page-project-single {
    padding: 100px 0
}

.project-single-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px
}

.project-detail-list {
    border: 1px solid var(--divider-color);
    padding: 0;
    margin-bottom: 60px
}

.project-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

.project-detail-item:last-child {
    margin-bottom: 0
}

.project-detail-item .icon-box {
    position: relative;
    background-color: var(--divider-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease-in-out
}

.project-detail-item .icon-box svg {
    width: 22px;
    height: 22px;
    color: #006F2E;
    transition: all 0.3s ease-in-out;
    z-index: 1
}

.project-detail-content {
    width: calc(100% - 70px)
}

.project-detail-content h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px
}

.project-detail-content p {
    color: #006F2E;
    text-transform: capitalize;
    margin-bottom: 0
}

.project-single-image {
    margin-bottom: 40px
}

.project-single-image figure {
    display: block
}

.project-single-image img {
    width: 100%;
    aspect-ratio: 1 / .6;
    object-fit: cover
}

.project-info,
.project-design-info {
    margin-bottom: 60px
}

.project-entry h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 30px
}

.project-entry p {
    margin-bottom: 20px
}

.project-entry p:last-child {
    margin-bottom: 0
}

.project-entry ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0
}

.project-entry ul li {
    position: relative;
    font-weight: 500;
    color: var(--text-color);
    padding-left: 30px;
    margin-bottom: 15px
}

.project-entry ul li:last-child {
    margin-bottom: 0
}

.project-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: #006F2E;
    display: inline-block;
    top: 2px;
    left: 0
}

.project-gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.project-gallery-img {
    width: calc(25% - 22.5px)
}

.project-gallery-img a,
.project-gallery-img figure {
    display: block;
    cursor: none
}

.project-gallery-img figure img {
    width: 100%;
    aspect-ratio: 1 / .99;
    object-fit: cover
}

.image-anime {
    position: relative;
    overflow: hidden
}

.sidebar-cta-image figure {
    display: block
}

.sidebar-cta-image img {
    width: 100%;
    aspect-ratio: 1 / .57;
    object-fit: cover
}

.sidebar-cta-Body {
    border: 1px solid var(--divider-color);
    padding: 30px
}

.sidebar-cta-content {
    margin-bottom: 25px
}

.sidebar-cta-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px
}

.sidebar-cta-content p {
    font-weight: 500;
    margin-bottom: 0
}

.sidebar-cta-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.sidebar-cta-contact-item:last-child {
    margin-bottom: 0
}

.sidebar-cta-contact-item .icon-box {
    position: relative;
    height: 58px;
    width: 58px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: all 0.4s ease-in-out
}

.sidebar-cta-contact-item:hover {
    background-color: #fff0
}

.sidebar-cta-contact-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out
}

.sidebar-cta-contact-item .icon-box img {
    position: relative;
    max-width: 24px;
    transition: all 0.3s ease-in-out;
    z-index: 1
}

.sidebar-cta-contact-item:hover .icon-box img {
    filter: brightness(0) invert(1)
}

.cta-contact-item-content {
    width: calc(100% - 78px)
}

.cta-contact-item-content p {
    font-weight: 500;
    margin: 0
}

footer {
    background: #232323;
    color: #fff;
    font-size: .95rem
}

footer a img {
    filter: grayscale(1);
    transition: filter 0.2s
}

footer a:hover img {
    filter: grayscale(0)
}

.stats h3 {
    font-size: 2rem;   
}

.products p {
    margin-top: .5rem;
    font-size: x-large;
    text-transform: uppercase
}

.map iframe {
    width: 100%;
    height: 660px
}

footer p {
    margin: 0;
    font-size: .9rem
}

.social a {
    font-size: 1rem
}

#about-hero {
    margin-top: 7rem
}

.secondary-menu-bar .list-inline-item a {
    font-size: 12px;
}

.mega-menu {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 90vw !important;
    max-width: none !important;
    border-radius: 0;
    top: 110px;
    padding: 0;
    z-index: 1050;
    margin: auto;
    border-radius: .5rem
}

@media (max-width:991.98px) {
    .mega-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        top: auto !important
    }
}

@media (max-width:768px) {
    .navbar-brand {
        width: 45%;
        margin: 0
    }

    .hero {
        margin-top: 4.5rem
    }

    #about-hero {
        margin-top: 5rem
    }
}