:root {
    --primary: #fc5655;
    --gold: #C9A24A;
    --white: #ffffff;
}

.main-header {
    width: 100%;
    background: #fff;
    /* background:rgba(5,20,15,.85); */
    backdrop-filter: blur(12px);
    z-index: 999;
    transition: .4s;
}

.navbar {
    padding: 18px 0;
}

.navbar-brand img {
    height: 65px;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: #262626 !important;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 10px 15px !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link.active {
    color: var(--primary) !important;
}

/* .nav-link.active::after{
    content:'';
    width:25px;
    height:2px;
    background:var(--gold);
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
} */

.call-btn {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 11px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: .4s;
    font-weight: 600;
}

.call-btn:hover {
    background: var(--gold);
    color: #fff;
}

.call-btn i {
    margin-right: 8px;
}

@media(max-width:991px) {

    .navbar-collapse {
        background: #000;
        padding: 25px;
        border-radius: 6px;
        margin-top: 15px;
    }
    .call-btn{display: none !important;}
    .nav-link{text-align: left !important;}
    .navbar-nav {
        text-align: center;
    }

    .call-btn {
        display: block;
        text-align: center;
        margin-top: 15px;
    }

    .navbar-brand img {
        height: 55px;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 162, 74, .08);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
    border-radius: 8px;
    z-index: -1;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.main-header.scrolled {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.call-btn {
    position: relative;
    overflow: hidden;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);
    transition: .7s;
}

.call-btn:hover::before {
    left: 100%;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    /* height: 800px; */
    background: url("../images/banner.jpeg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background:rgba(0,0,0,.55); */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background:
    linear-gradient(
    90deg,
    rgba(5,20,15,.95) 0%,
    rgba(5,20,15,.75) 40%,
    rgba(5,20,15,.15) 100%); */
    background: linear-gradient(90deg, rgb(5 20 15 / 56%) 0%, rgb(5 20 15 / 5%) 40%, rgb(5 20 15 / 36%) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #fff;
}

.hero-tag {
    color: #C9A24A;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 51px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.hero-content h1 span {
    color: #C9A24A;
}

.hero-content p {
    max-width: 650px;
    color: #ddd;
    font-size: 18px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-features div {
    color: white;
    font-weight: 500;
}

.hero-features i {
    color: #fc5655;
    margin-right: 8px;
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-explore {
    padding: 16px 35px;
    background: #fc5655;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: .4s;
}

.details-button {
    background: #fc5655;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-explore:hover {
    transform: translateY(-5px);
    color: white;
}

.btn-visit {
    padding: 16px 35px;
    border: 1px solid rgba(255, 255, 255, .4);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.btn-visit:hover {
    background: white;
    color: #082B20;
}

.future-card {
    position: relative;
    z-index: 5;
    max-width: 320px;
    margin-left: auto;

    padding: 40px;

    border-radius: 25px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .15);

    color: white;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .25);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #fc5655;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 28px;
}

.floating-stats {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 25px;

    z-index: 10;
}

.stat-box {
    background: white;
    padding: 20px 35px;
    border-radius: 20px;
    text-align: center;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);
}

.stat-box h3 {
    color: #082B20;
    margin: 0;
}

.stat-box p {
    margin: 0;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;

    width: 100%;
    height: 150px;

    background: white;

    border-radius:
        100% 100% 0 0 / 100px 100px 0 0;
}

@media(max-width:991px) {

    .hero-content {
        text-align: center;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .future-card {
        margin: 50px auto;
    }

    .floating-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        margin: 50px 20px;
    }

    .stat-box {
        width: 100%;
    }

    .hero-wave {
        height: 80px;
    }

}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn-explore,
    .btn-visit {
        width: 100%;
        text-align: center;
    }

}

.features-section {
    padding: 120px 0;
    background: #fff;
}

.section-title span {
    color: #C9A24A;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 800;
    color: #262626;
    margin-top: 15px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.feature-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;

    position: relative;
    overflow: hidden;

    transition: .5s;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;

    background:
        radial-gradient(rgba(201, 162, 74, .15),
            transparent);

    top: -150px;
    right: -150px;

    transition: .5s;
}

.feature-card:hover::before {
    transform: scale(1.4);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .15);
}

.feature-icon {
    width: 90px;
    height: 90px;

    margin: auto;
    margin-bottom: 25px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #082B20,
            #0f4b38);

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: #C9A24A;
    font-size: 34px;
}

.feature-card h4 {
    color: #082B20;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

@media(max-width:768px) {

    .features-section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .feature-card {
        padding: 30px 20px;
    }

}

.projects-section {
    padding: 51px 0;
    background: #f8faf9;
}

.project-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: .5s;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.project-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .15);

}

.project-image {

    position: relative;

    overflow: hidden;

    height: 300px;

}

.project-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .8s;

}

.project-card:hover img {

    transform: scale(1.12);

}

.location-badge {

    position: absolute;

    top: 20px;
    left: 20px;

    background: #C9A24A;

    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

}

.project-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(8, 43, 32, .75);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: .5s;

}

.project-card:hover .project-overlay {

    opacity: 1;

}

.project-overlay a {

    background: #C9A24A;

    color: white;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 50px;

    font-weight: 600;

}

.project-content {

    padding: 30px;

}

.project-content h4 {

    color: #082B20;

    font-weight: 700;

    margin-bottom: 15px;

}

.project-content p {

    color: #666;

    line-height: 1.8;

}

.project-info {

    margin-top: 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid #eee;

    padding-top: 20px;

}

.project-info span:first-child {

    color: #555;

}

.project-info span:last-child {

    color: #C9A24A;

    font-weight: 700;

    font-size: 18px;

}

@media(max-width:768px) {

    .project-image {
        height: 250px;
    }

    .project-content {
        padding: 20px;
    }

}

@media(max-width:768px) {

    .project-image {
        height: 250px;
    }

    .project-content {
        padding: 20px;
    }

}

.about-luxury {
    position: relative;
    padding: 51px 0;
    background: #fff;
    overflow: hidden;
}

.about-images {

    position: relative;

    height: 650px;
}

.main-image {

    width: 80%;
    height: 500px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .15);
}

.main-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-image {
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 300px;
    height: 320px;
    border: 10px solid white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .18);
}

.small-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {

    position: absolute;

    left: -30px;
    top: 50px;

    background: #082B20;

    color: white;

    padding: 25px 35px;

    border-radius: 25px;

    text-align: center;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15);
}

.experience-badge h2 {

    font-size: 42px;

    color: #C9A24A;

    margin-bottom: 5px;
}

.experience-badge span {

    font-size: 14px;
}

.about-content {

    padding-left: 50px;
}

.sub-title {
    color: #fc5655;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #262626;
    margin:6px 0;
    font-weight: 700;
}

.about-content p {

    color: #666;

    line-height: 1.9;

    font-size: 17px;
}

.about-points {

    margin-top: 40px;
}

.point-box {

    display: flex;

    gap: 20px;

    padding: 25px;

    border-radius: 20px;

    margin-bottom: 20px;

    background: #fff;

    transition: .4s;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.point-box:hover {

    transform: translateX(10px);
}

.point-box i {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 6px;
    background: #fc5655;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 40px;
    border-radius: 60px;
    background: #fc5655;
    color: white;
    text-decoration: none;
    transition: .4s;
}

.about-btn:hover {

    background: #C9A24A;

    color: white;

    transform: translateY(-5px);
}

@media(max-width:991px) {

    .about-images {

        height: auto;

        margin-bottom: 60px;
    }

    .main-image {

        width: 100%;
        height: 450px;
    }

    .small-image {

        position: relative;

        width: 100%;

        right: auto;
        bottom: auto;

        margin-top: 20px;
    }

    .experience-badge {

        left: 20px;
        top: 20px;
    }

    .about-content {

        padding-left: 0;
    }

    .about-content h2 {

        font-size: 38px;
    }

}

@media(max-width:576px) {
    .nav-link{color: #fff !important;}
    .about-content h2 {

        font-size: 30px;
    }

    .main-image {

        height: 320px;
    }

}

.achievement-section {
    position: relative;
    padding: 51px 0;
    background:
        linear-gradient(135deg,
            #082B20 0%,
            #0E4535 100%);
    overflow: hidden;
}

.achievement-section::before {

    content: '';

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(201, 162, 74, .18),
            transparent);

    top: -200px;
    left: -150px;
}

.achievement-section::after {

    content: '';

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(255, 255, 255, .08),
            transparent);

    bottom: -200px;
    right: -150px;
}

.achievement-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}

.counter-box {

    text-align: center;

    padding: 45px 30px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255, 255, 255, .08);

    transition: .5s;

    position: relative;

    overflow: hidden;
}

.counter-box::before {

    content: '';

    position: absolute;

    width: 250px;
    height: 250px;

    background:
        radial-gradient(rgba(201, 162, 74, .25),
            transparent);

    top: -150px;
    right: -150px;

    transition: .5s;
}

.counter-box:hover {

    transform:
        translateY(-15px);

    border-color: #C9A24A;
}

.counter-box:hover::before {

    transform: scale(1.5);
}

.counter-icon {

    width: 85px;
    height: 85px;

    margin: auto;
    margin-bottom: 25px;

    border-radius: 50%;

    background: #C9A24A;

    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon i {

    color: #082B20;

    font-size: 34px;
}

.counter-box h2 {

    color: white;

    font-size: 55px;

    font-weight: 800;

    margin-bottom: 10px;
}

.counter-box p {

    color: #d9d9d9;

    font-size: 16px;

    margin: 0;
}

@media(max-width:991px) {

    .achievement-wrapper {

        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .achievement-wrapper {

        grid-template-columns: 1fr;
    }

    .counter-box h2 {

        font-size: 42px;
    }

}

.lux-services {

    position: relative;

    padding: 140px 0;

    background: #f9faf9;

    overflow: hidden;
}

.service-heading {

    text-align: center;

    margin-bottom: 100px;
}

.service-heading span {

    color: #C9A24A;

    font-weight: 700;

    letter-spacing: 3px;
}

.service-heading h2 {

    max-width: 700px;

    margin: auto;

    margin-top: 20px;

    font-size: 55px;

    color: #082B20;

    font-weight: 800;
}

.services-wrapper {

    display: flex;

    flex-direction: column;

    gap: 50px;
}

.service-item {

    width: 75%;

    position: relative;
}

.service-item.right {

    margin-left: auto;
}

.service-number {

    position: absolute;

    top: -50px;

    left: 20px;

    font-size: 120px;

    font-weight: 900;

    color:
        rgba(201, 162, 74, .08);

    z-index: 1;

    user-select: none;
}

.service-content {

    position: relative;

    z-index: 2;

    background: white;

    padding: 45px;

    border-radius: 30px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    transition: .5s;

    overflow: hidden;
}

.service-content::before {

    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 0;

    background: #C9A24A;

    transition: .5s;
}

.service-content:hover::before {

    height: 100%;
}

.service-content:hover {

    transform:
        translateY(-15px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .15);
}

.service-content:hover {

    transform:
        translateY(-15px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .15);
}

.service-icon {

    width: 85px;
    height: 85px;

    border-radius: 25px;

    background:
        linear-gradient(135deg,
            #082B20,
            #114837);

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.service-icon i {

    color: #C9A24A;

    font-size: 34px;
}

.service-content h3 {

    font-size: 30px;

    margin-bottom: 15px;

    color: #082B20;

    font-weight: 700;
}

.service-content p {

    color: #666;

    line-height: 1.9;
}

.service-content::after {

    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(201, 162, 74, .15),
            transparent);

    right: -180px;
    top: -180px;

    transition: .5s;
}

.service-content:hover::after {

    transform: scale(1.5);
}

@media(max-width:991px) {

    .service-item,
    .service-item.right {

        width: 100%;

        margin-left: 0;
    }

    .service-heading h2 {

        font-size: 38px;
    }

}

@media(max-width:576px) {

    .service-content {

        padding: 30px;
    }

    .service-number {

        font-size: 80px;
    }

    .service-heading h2 {

        font-size: 30px;
    }

}




@media(max-width:991px) {

}

@media(max-width:576px) {

}

.page-banner {

    position: relative;

    height: 450px;

    background: url('../images/about-banner.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.banner-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(8, 43, 32, .85),
            rgba(8, 43, 32, .75));
}

.banner-content {

    position: relative;
    z-index: 2;

    text-align: center;

    color: white;
}

.banner-content h1 {

    font-size: 70px;

    font-weight: 800;

    margin-bottom: 20px;
}

.banner-content ul {

    display: flex;

    justify-content: center;

    gap: 12px;

    list-style: none;

    padding: 0;
}

.banner-content a {

    color: #C9A24A;

    text-decoration: none;
}

.about-company {

    padding: 140px 0;
}

.company-image img {

    width: 100%;

    border-radius: 30px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .15);
}

.company-content span {

    color: #C9A24A;

    letter-spacing: 2px;

    font-weight: 700;
}

.company-content h2 {

    font-size: 55px;

    color: #082B20;

    margin: 20px 0;
}

.company-content p {

    color: #666;

    line-height: 1.9;
}

.mission-vision {

    padding-bottom: 120px;
}

.mv-card {

    padding: 50px;

    border-radius: 30px;

    background: white;

    text-align: center;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    transition: .5s;
}

.mv-card:hover {

    transform: translateY(-10px);
}

.mv-card i {

    font-size: 50px;

    color: #C9A24A;

    margin-bottom: 20px;
}

.team-section {

    padding: 120px 0;
}

.team-card {

    text-align: center;

    background: white;

    padding: 30px;

    border-radius: 30px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);
}

.team-card img {

    width: 100%;

    height: 350px;

    object-fit: cover;

    border-radius: 25px;

    margin-bottom: 20px;
}

/* client-css */

.partnership-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.section-heading h2 {
    font-size: 46px;
    font-weight: 800;
    color: #262626;
    line-height: 1.2;
}

.section-heading span {
    color: #fc5655;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.gold-divider span {
    width: 140px;
    height: 2px;
    background: #d4af37;
}

.gold-divider i {
    color: #d4af37;
}

.partner-card {
    text-align: center;
    margin-bottom: 0px;
}

.logo-box {

    background: #fff;

    height: 170px;

    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, .08);

    transition: .4s;
}

.logo-box:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15);
}

.logo-box img {
    max-width: 75%;
    max-height: 120px;
    object-fit: contain;
}

.partner-card h5 {
    margin-top: 20px;
    font-weight: 700;
    color: #0c2c66;
}

.partner-card p {
    font-size: 14px;
    color: #444;
    margin-top: 5px;
}

/* Blue Footer Bar */

.benefit-bar {
    background: #002f7f;
    border-radius: 0px;
    padding: 25px 40px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.icon {

    width: 60px;
    height: 60px;

    background: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #002f7f;

    font-size: 22px;
}

.benefit-item h6 {
    margin: 0;
    font-size: 18px;
}

.benefit-item span {
    color: #f7c948;
}

@media(max-width:768px) {

    .section-heading h2 {
        font-size: 32px;
    }

    .benefit-bar {
        border-radius: 25px;
        gap: 20px;
    }

    .benefit-item {
        width: 100%;
    }

    .logo-box {
        height: 170px;
    }
}