html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #333333;
    background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: 'Manrope', sans-serif;
}

.btn-burgundy {
    background: #6D001A;
    color: #fff;
    transition: all 0.35s ease;
}

.btn-burgundy:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(109, 0, 26, 0.18);
}

.section-space {
    padding-top: 90px;
    padding-bottom: 90px;
}

.image-hover {
    transition: transform 0.7s ease;
}

.image-hover:hover {
    transform: scale(1.04);
}

.hero-load>* {
    opacity: 0;
    transform: translateY(45px);
    animation: heroUp 0.9s ease forwards;
}

.hero-load>*:nth-child(1) {
    animation-delay: 0.15s;
}

.hero-load>*:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-load>*:nth-child(3) {
    animation-delay: 0.45s;
}

.hero-load>*:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-load>*:nth-child(5) {
    animation-delay: 0.75s;
}

@keyframes heroUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom,
.stagger {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal {
    transform: translateY(70px);
    transition: all 0.9s ease;
}

.reveal-left {
    transform: translateX(-70px);
    transition: all 0.9s ease;
}

.reveal-right {
    transform: translateX(70px);
    transition: all 0.9s ease;
}

.reveal-zoom {
    transform: scale(0.88);
    transition: all 1s ease;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.stagger>* {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.stagger.reveal-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger.reveal-visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger.reveal-visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger.reveal-visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger.reveal-visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger.reveal-visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger.reveal-visible>*:nth-child(6) {
    transition-delay: 0.6s;
}

.overlay-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 67%);
    z-index: 1;
}

.overlay-light::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
}

.content-layer {
    position: relative;
    z-index: 2;
}

.testimonial-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial-item.hidden {
    opacity: 0;
    pointer-events: none;
}

.accordion-item {
    background: transparent !important;
}

.accordion-button {
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(11%) sepia(97%) saturate(4165%) hue-rotate(336deg) brightness(83%) contrast(118%);
}

.accordion-body {
    background: transparent !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.logo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: #fff;
}

.logo-container img {
    display: block;
    max-width: 250px;
    height: auto;
    width: 150px;
}

.logo-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
}

.logo-container:hover::after {
    animation: shine 1.5s infinite;
}

.logo-container::after {
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 18px;
}

.section-space {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #5d6772;
    margin-bottom: 22px;
    display: block;
}

.main-title {
    font-size: 38px;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -1.4px;
    color: #000;
    margin-bottom: 24px;
    max-width: 430px;
}

.desc {
    font-size: 15px;
    line-height: 1.95;
    color: #617081;
    max-width: 470px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 128px;
    height: 38px;
    border: 2px solid #d7dbe0;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5c6670;
    margin-top: 28px;
    background: transparent;
    transition: .3s ease;
}

.btn-outline:hover {
    border-color: #6D001A;
    color: #6D001A;
}

.btn-outline span:last-child {
    color: #6D001A;
    font-size: 12px;
    transform: translateY(-1px);
}

.offer-section {
    background-color: #F4F7F9;
    /* background-image: url(https://preview.codeless.co/bygge/default/wp-content/uploads/2021/06/bg-2.png);
    background-position: center center; */
}

.offer-shape {
    position: absolute;
    right: 85px;
    top: 95px;
    width: 360px;
    pointer-events: none;
}

.offer-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 78px;
    align-items: center;
}

.service-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 500px;
    margin: 0 auto;
}

.service-offer-item {
    position: relative;
    width: 280px;
    height: 250px;
    box-shadow: 10px 41px 57px -17px rgba(0, 0, 0, 0.22);
}

.service-offer-card,
.service-offer-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: .35s ease;
}

.service-offer-card {
    background: #fff;
    padding: 28px 22px 22px;
    overflow: hidden;
    z-index: 2;
}

.service-offer-card .icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6D001A;
    font-size: 24px;
}

.service-offer-card h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.service-offer-card p {
    text-align: center;
    font-size: 13px;
    color: #6c7682;
    max-width: 210px;
    margin: 0 auto;
}

.service-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid #d6d9de;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #6D001A;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    transition: .35s ease;
}

.service-offer-card-image {
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    /* transform: scale(.96); */
    z-index: 3;
}

.service-offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-offer-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    z-index: 1;
    transition: .35s ease;
}

.service-offer-card-image .inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #fff;
}

.service-offer-card-image .icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.service-offer-card-image h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-offer-card-image p {
    text-align: center;
    font-size: 13px;
    max-width: 210px;
    margin: 0 auto;
}

.service-offer-card-image .service-arrow {
    width: 34px;
    height: 34px;
    bottom: 28px;
    background: #6D001A;
    border: none;
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 107, 26, .28);
}

.service-offer-item:hover .service-offer-card-image {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.service-offer-item:hover .service-offer-card-image::before {
    background: rgba(0, 0, 0, .52);
}

.service-offer-item:hover .service-offer-card-image .service-arrow {
    transform: translateX(-50%) scale(1.08);
}

.offer-right {
    position: relative;
    z-index: 2;
    padding-top: 8px;
}

@media (max-width: 1100px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .service-offer-grid {
        width: 100%;
        max-width: 500px;
    }
    .offer-shape {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 70px 0;
    }
    .main-title {
        font-size: 31px;
        max-width: 100%;
    }
    .service-offer-grid {
        grid-template-columns: 1fr;
    }
    .service-offer-item {
        height: 220px;
        margin: 0 auto;
    }
}

.profile-section {
    background: #f7f7f7;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.profile-left .main-title {
    max-width: 380px;
}

.profile-right {
    position: relative;
    min-height: 520px;
}

.blueprint {
    position: absolute;
    left: 20px;
    top: 110px;
    width: 230px;
    opacity: .16;
    z-index: 1;
}

.img-large {
    position: absolute;
    right: 0;
    top: 0;
    width: 385px;
    height: 430px;
    object-fit: cover;
    z-index: 2;
}

.img-small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 290px;
    height: 305px;
    object-fit: cover;
    z-index: 3;
    box-shadow: 0 30px 50px rgba(0, 0, 0, .12);
}

.team-section {
    background: #f3f4f4;
}

.team-blueprint {
    position: absolute;
    left: 120px;
    top: 0;
    width: 460px;
    opacity: .12;
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.team-cards {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.team-card {
    width: 268px;
    background: #fff;
    padding: 30px 26px 32px;
    position: relative;
    z-index: 2;
}

.team-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 12px solid #6D001A;
    border-left: 12px solid transparent;
}

.team-avatar {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    background: #efefef;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.team-role {
    text-align: center;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6c7682;
    margin-bottom: 16px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    color: #8a929a;
}

.team-right .main-title {
    max-width: 320px;
}

@media (max-width: 1100px) {
    .offer-grid,
    .profile-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .offer-shape {
        display: none;
    }
    .profile-right {
        min-height: 560px;
    }
    .team-cards {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 0px 0;
    }
    .main-title {
        font-size: 34px;
    }
    .img-large {
        position: relative;
        width: 100%;
        height: 320px;
    }
    .img-small {
        position: relative;
        width: 75%;
        height: 260px;
        margin-top: -70px;
        left: 0;
    }
    .profile-right {
        min-height: auto;
    }
    .circle-badge {
        left: 50%;
        top: 235px;
        transform: translateX(-50%);
    }
    .team-card {
        width: 100%;
        max-width: 320px;
    }
}

.experience-box {
    position: absolute;
    top: 25px;
    right: -10px;
    background: #6d001a;
    color: #fff;
    padding: 18px 24px;
    text-align: center;
    min-width: 190px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.experience-box h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.experience-box p {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 400;
}

.experience-box span {
    font-size: 12px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .experience-box {
        top: 15px;
        right: 15px;
        min-width: 150px;
        padding: 14px 18px;
    }
    .experience-box h3 {
        font-size: 18px;
    }
    .experience-box p {
        font-size: 13px;
    }
}

.services-section {
    padding: 70px 0 90px;
    background: #f1f0e8;
    overflow: hidden;
}

.services-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.services-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 16px;
    border: 1px solid #cfcbbf;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    letter-spacing: .3px;
    margin-bottom: 18px;
    background: transparent;
}

.services-title {
    font-size: 68px;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -2px;
    color: #000;
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 40px;
    flex-shrink: 0;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ddd8cc;
    background: #f7f6f1;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}

.slider-btn svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.9;
}

.slider-btn:hover {
    background: #6D001A;
    border-color: #6D001A;
    color: #fff;
}

.services-slider-wrap {
    position: relative;
}

.services-swiper {
    overflow: visible;
}

.services-swiper .swiper-slide {
    height: auto;
}

.service-card {
    position: relative;
    min-height: 392px;
    background: #f8f8f8;
    border: 1px solid #e7e4db;
    border-radius: 8px;
    padding: 38px 40px 34px;
    transition: all .35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #6D001A;
    opacity: 0;
    transition: all .35s ease;
    z-index: 0;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #313131;
    transition: all .35s ease;
}

.service-icon svg {
    width: 64px;
    height: 64px;
    stroke: currentColor;
}

.service-card h3 {
    font-size: 28px;
    line-height: 1.35;
    font-weight: 500;
    color: #262626;
    margin-bottom: 24px;
    max-width: 220px;
    transition: all .35s ease;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 600;
    color: #2b2b2b;
    text-transform: uppercase;
    transition: all .35s ease;
}

.service-link span:last-child {
    font-size: 20px;
    line-height: 1;
    transform: translateY(-1px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
    color: #fff;
}

.service-card:hover h3 {
    color: #fff;
}

.services-swiper .swiper-slide-active .service-card::before,
.services-swiper .swiper-slide-duplicate-active .service-card::before {
    opacity: 0;
}

.services-swiper .swiper-slide-active .service-card:hover::before {
    opacity: 1;
}

@media (max-width: 1399px) {
    .services-title {
        font-size: 58px;
    }
    .service-card {
        min-height: 370px;
        padding: 34px 32px 30px;
    }
}

@media (max-width: 1199px) {
    .services-title {
        font-size: 50px;
    }
    .service-card h3 {
        font-size: 25px;
    }
    .slider-btn {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 60px 0 80px;
    }
    .services-topbar {
        margin-bottom: 32px;
    }
    .services-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    .slider-nav {
        padding-top: 10px;
    }
    .service-card {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 50px 0 70px;
    }
    .services-container {
        padding: 0 12px;
    }
    .services-title {
        font-size: 34px;
        line-height: 1.08;
    }
    .services-subtitle {
        font-size: 12px;
        padding: 6px 14px;
    }
    .services-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .slider-nav {
        padding-top: 0;
    }
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    .service-card {
        min-height: 300px;
        padding: 28px 24px 24px;
    }
    .service-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 28px;
    }
    .service-icon svg {
        width: 52px;
        height: 52px;
    }
    .service-card h3 {
        font-size: 22px;
        max-width: 100%;
        margin-bottom: 18px;
    }
    .service-link {
        font-size: 15px;
    }
}


/* HERO */

.hero {
    position: relative;
    background: linear-gradient(rgba(20, 20, 20, 0.55), rgba(20, 20, 20, 0.55)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    text-align: center;
    width: 100%;
}

.hero h1 {
    color: white;
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 15px;
}


/* FEATURES */

.features {
    background: var(--light);
}

.features-top {
    display: grid;
    margin-bottom: 50px;
    align-items: end;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 35px 28px;
    border: 1px solid #eee;
    transition: 0.3s ease;
    min-height: 250px;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(109, 0, 26, 0.18);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(199, 157, 99, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.feature-icon img {
    width: 50px
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}


/* STATUS */

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.status-img img {
    height: 620px;
    width: 100%;
    object-fit: cover;
}

.progress-item {
    margin-bottom: 28px;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #eee;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
}


/* TIMELINE */

.timeline-section {
    background: var(--light);
}

.timeline-wrapper {
    position: relative;
    max-width: 950px;
    margin: 60px auto 0;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left .timeline-dot {
    right: -9px;
}

.timeline-item.right .timeline-dot {
    left: -9px;
}

.timeline-card {
    background: white;
    padding: 28px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.timeline-year {
    color: var(--primary);
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 10px;
    font-size: 20px;
}

.timeline-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}


/* TEAM */

.team-grid {
    display: grid;
    gap: 25px;
    margin-top: 55px;
}

.team-card {
    background: #fff;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(109, 0, 26, 0.18);
}

.team-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.team-info {
    padding: 25px 20px;
}

.team-info h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.team-info p {
    color: var(--primary);
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
}


/* OFFICES */

.offices {
    background: var(--light);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 55px;
}

.office-card {
    background: #fff;
    padding: 35px 30px;
    border: 1px solid #eee;
    min-height: 240px;
    transition: 0.3s ease;
}

.office-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(109, 0, 26, 0.18);
}

.office-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.office-card p {
    margin-bottom: 10px;
}


/* NEWSLETTER */

.newsletter {
    background: var(--dark);
    color: white;
    padding: 70px 0;
}

.newsletter-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter h2 {
    color: white;
    font-size: 42px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    height: 58px;
    border: none;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
}


/* FOOTER */

footer {
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    padding: 25px 0;
    text-align: center;
    font-size: 15px;
}


/* ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title,
.about-content .section-title {
    font-size: 40px;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .feature-cards,
    .team-grid,
    .office-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title,
    .about-content .section-title {
        font-size: 32px;
    }
    .hero h1 {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .about-grid,
    .features-top,
    .status-grid,
    .newsletter-wrap {
        grid-template-columns: 1fr;
    }
    .about-images {
        min-height: auto;
    }
    .img-main {
        width: 100%;
        height: 420px;
    }
    .img-small {
        position: relative;
        width: 65%;
        margin-top: -60px;
        left: 20px;
    }
    .status-img img {
        height: 420px;
    }
    .timeline-wrapper::before {
        left: 20px;
    }
    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 55px;
        padding-right: 0;
    }
    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 11px;
        right: auto;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 75px 0;
    }
    .hero {
        min-height: 320px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .section-title,
    .about-content .section-title,
    .newsletter h2 {
        font-size: 30px;
    }
    .feature-cards,
    .team-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }
    .img-small {
        width: 75%;
        height: 220px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}


/* =========================
   NAVBAR
========================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 999;
}

.main-nav a,
.dropbtn {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.main-nav a:hover,
.dropbtn:hover {
    color: #6D001A;
    /* burgundy */
}


/* Active top menu */

.main-nav a.active,
.dropdown.active-parent .dropbtn {
    color: #6D001A;
}


/* Dropdown */

.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}


/* Dropdown Box */

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    margin-top: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}


/* Show dropdown on hover */

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}


/* Dropdown links */

.dropdown-content a {
    display: block;
    padding: 14px 22px;
    color: #111;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #6D001A;
}


/* Active submenu */

.dropdown-content a.active-sub {
    background: #f5f5f5;
    color: #6D001A;
}

.section-padding {
    padding: 80px 0px 80px 0px;
}

.about_completed_pro-left-list-item {
    display: flex;
    align-items: start;
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #CDD0CD;
}

.about_completed_pro-left-list-item i {
    font-size: 60px;
    margin-top: 6px;
    color: #000;
}

.about_completed_pro-left-list-item-content h4 {
    font-size: 24px;
    line-height: 34px;
}

.about_completed_pro-left-list-item-content p {
    margin-bottom: 0;
    margin-top: 5px;
}

.about_completed_pro-left-list-item:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.about_completed_pro-left-image {
    position: relative;
}

.about_completed_pro-left-image img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 335px;
    filter: brightness(0.6);
}

.about_completed_pro-left-image .video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.about_completed_pro-left-image .video a {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.about_completed_pro h2 {
    font-size: 56px;
    line-height: 66px;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    border: 1px solid #b0b0b0;
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: #6D001A;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: 0.3s ease;
}

.gallery-card:hover .gallery-icon {
    transform: scale(1);
}

.gslide-media img {
    width: 100%;
    height: 100%
}

@media (max-width: 767px) {
    .gallery-card img {
        height: 240px;
    }
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #ddd;
}

@media (max-width: 991px) {
    .map-wrapper {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .map-wrapper {
        height: 320px;
        border-radius: 18px;
    }
    .completed_pro .nav-pills {
        gap: 0px!important;
    }
    .completed_pro {
        .nav .nav-item button {
            padding: 10px !important;
        }
    }
}

.completed_pro {
    .nav .nav-item button.active {
        background-color: #fff;
        color: #6D001A !important;
        border-radius: unset;
    }
    .nav .nav-item button {
        color: #727272;
        font-size: 18px;
        text-transform: uppercase;
    }
    .nav .nav-item button.active::after {
        content: "";
        border-bottom: 4px solid #6D001A;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -1px;
        border-radius: 5px 5px 0 0;
    }
    .nav-pills {
        justify-content: center;
        gap: 30px
    }
}


/* ==========================
   ENQUIRY SECTION
========================== */

.enquiry-section {
    padding: 90px 0;
    background: linear-gradient(to right, #f5f5f5, #efefef);
}

.enquiry-wrapper {
    display: flex;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}


/* ==========================
   LEFT FORM CARD
========================== */

.enquiry-form-card {
    flex: 1 1 450px;
    background: #ffffff;
    padding: 40px 35px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #ececec;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-message {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
}

.success-message {
    background: #e6f8ec;
    color: #1d7a3a;
    border: 1px solid #b8e7c8;
}

.error-message {
    background: #fdeaea;
    color: #b42318;
    border: 1px solid #f5b5b5;
}

.error-text {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #d32f2f;
    font-weight: 500;
}

#formResponse p {
    margin: 0;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f8f8f8;
}


/* ==========================
   FORM FIELDS
========================== */

.enquiry-form .form-group {
    margin-bottom: 16px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8d8d8;
    font-size: 15px;
    color: #222;
    background: #fafafa;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #6D001A;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(123, 30, 59, 0.08);
}

.enquiry-form textarea {
    resize: none;
    min-height: 120px;
}


/* ==========================
   BUTTONS
========================== */

.enquire-btn {
    width: 100%;
    background: linear-gradient(135deg, #6D001A);
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.enquire-btn:hover {
    background: linear-gradient(135deg, #6D001A);
    transform: translateY(-2px);
}

.call-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border: 1.5px solid #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: #fff;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(109, 0, 26, 0.18);
    color: #000!important;
}


/* ==========================
   RIGHT IMAGE CARD
========================== */

.enquiry-image-card {
    flex: 1 1 500px;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.enquiry-image-card img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.image-content span {
    display: inline-block;
    color: #d9b07c;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.image-content h3 {
    font-size: 34px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
    max-width: 420px;
}

.image-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #f2f2f2;
    max-width: 450px;
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
    .enquiry-section {
        padding: 70px 0;
    }
    .enquiry-wrapper {
        flex-direction: column;
    }
    .form-title {
        font-size: 24px;
    }
    .image-content h3 {
        font-size: 28px;
    }
    .enquiry-image-card {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .enquiry-form-card {
        padding: 30px 22px;
    }
    .form-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    .enquiry-form input,
    .enquiry-form textarea {
        font-size: 14px;
        padding: 13px 14px;
    }
    .enquire-btn,
    .call-btn {
        font-size: 13px;
        padding: 14px 16px;
    }
    .enquiry-image-card {
        min-height: 340px;
    }
    .image-overlay {
        padding: 24px;
    }
    .image-content h3 {
        font-size: 24px;
    }
    .image-content p {
        font-size: 14px;
    }
}


/* ================================
   COMPLETED PROJECTS SECTION
================================ */

.cpj-showcase-section {
    padding: 30px 0;
}

.cpj-showcase-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 14px;
}

.cpj-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}


/* ================================
   PROJECT CARD
================================ */

.cpj-project-card {
    background: transparent;
    /* overflow: hidden; */
    border: 1px solid #e5e7eb;
    height: 100%;
}

.cpj-project-image-wrap {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.cpj-project-image-wrap img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.cpj-project-card:hover .cpj-project-image-wrap img {
    transform: scale(1.05);
}


/* ================================
   BADGE
================================ */

.cpj-project-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #6d001a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 10px;
    z-index: 2;
    border-radius: 2px;
}


/* ================================
   CONTENT
================================ */

.cpj-project-content {
    padding-top: 14px;
}

.cpj-project-title {
    font-size: 21px;
    font-weight: 500;
    color: #111111;
    line-height: 1.35;
    margin-bottom: 5px;
    font-family: 'Manrope', sans-serif;
}

.cpj-project-location {
    font-size: 12px;
    color: #9b8e83;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 18px;
    font-weight: 600;
}

.cpj-project-location span {
    color: #6d001a
}


/* ================================
   BUTTON
================================ */

.cpj-project-btn {
    background-color: #6d001a;
    border-color: #6d001a;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    margin: 10px auto;
}

.cpj-project-btn:hover {
    color: #6d001a;
    /* transform: translateY(-3px); */
    box-shadow: 0 14px 30px rgba(109, 0, 26, 0.18);
    border: 1px solid #6d001a;
    font-weight: bold;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
    .cpj-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cpj-project-image-wrap img {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .cpj-showcase-section {
        padding: 60px 0;
    }
    .cpj-showcase-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cpj-project-image-wrap img {
        height: 320px;
    }
    .cpj-project-title {
        font-size: 18px;
    }
    .cpj-project-location {
        font-size: 12px;
        margin-bottom: 14px;
    }
}

@media screen and (orientation: landscape) {
    .carousel img {
        height: unset!important;
    }
}


/* ==========================
   WHY SECTION
========================== */

.why-section {
    text-align: center;
}

.why-section h2 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.15;
    color: #000
}

.subtitle {
    font-size: 17px;
    color: #222;
    margin-bottom: 50px;
}


/* ==========================
   FEATURE GRID
========================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}

.feature-card {
    background: #e9eaec;
    border-radius: 28px;
    padding: 34px 28px 30px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.icon {
    font-size: 42px;
    margin-bottom: 18px;
    line-height: 1;
}

.icon img {
    width: 50px
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    line-height: 1.35;
    color: #000;
}

.feature-card p {
    font-size: 17px;
    color: #222;
    max-width: 290px;
    line-height: 1.6;
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1100px) {
    .why-section h2 {
        font-size: 46px;
    }
    .about-content p,
    .feature-card p,
    .subtitle {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-section h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 40px 16px 60px;
    }
    .why-section h2 {
        font-size: 32px;
    }
    .subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        min-height: auto;
        padding: 30px 22px;
        border-radius: 22px;
    }
    .feature-card h3 {
        font-size: 17px;
    }
    .feature-card p {
        font-size: 15px;
    }
}

.custom-maker {
    font-size: 16px;
    list-style-type: disc;
    li::marker {
        color: #6D001A;
    }
}

.position-relative {
    position: relative!important;
}

.career-wrapper {
    max-width: 760px;
    margin: 30px auto;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.career-header {
    background: #6d001a;
    color: #fff;
    padding: 35px 30px;
    text-align: center;
}

.career-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.career-header p {
    font-size: 15px;
    color: #d1d5db;
}

.career-form {
    padding: 35px 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6d001a;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input.error-field,
.form-group select.error-field,
.form-group textarea.error-field {
    border-color: #dc2626;
    background: #fef2f2;
}

.field-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.submit-btn {
    width: 50%;
    background: #6d001a;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.alert {
    padding: 14px 18px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 15px;
    text-align: center;
}

.alert.success {
    background: #ecfdf3;
    color: #067647;
    border: 1px solid #abefc6;
}

.alert.error {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fecdca;
}

.file-note {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

.loading-text {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .loading-text {
    display: inline;
}

@media (max-width: 768px) {
    .career-header h2 {
        font-size: 26px;
    }
    .career-form {
        padding: 25px 20px;
    }
    .submit-btn {
        width: 100%;
    }
}

.enquire-btn {
    position: relative;
    overflow: hidden;
}

.enquire-btn .loading-text {
    display: none;
}

.enquire-btn.loading .btn-text {
    display: none;
}

.enquire-btn.loading .loading-text {
    display: inline;
}

.enquire-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}