:root{
    --navy-deep:#051526;
    --navy:#162148;
    --charcoal:#2b2d33;
    --offwhite:#f6f4ee;
    --brass:#b89968;
    --brass-soft:#cdb487;
    --muted:#6e6e76;
    --border:#e3dfd6;
    --font-serif:"Cormorant Garamond", "Times New Roman", serif;
    --font-sans:"Inter", system-ui, sans-serif;
}
*{
    -webkit-font-smoothing:antialiased;
}
html{
    scroll-behavior:smooth;
    width:100%;
    overflow-x: hidden
}
body{
    font-family:var(--font-sans);
    font-weight:300;
    letter-spacing:.01em;
    background:var(--offwhite);
    color:var(--navy-deep);
    width:100%;
    overflow-x: hidden
}
h1,h2,h3,h4{
    font-family:var(--font-serif);
    font-weight:400;
    letter-spacing:-.01em;
}
.insd-content .has-white-background-color{
     background-color: var(--navy-deep) !important;
    color: var(--offwhite);
    margin-bottom: -1px !important;
}
.insd-content .has-white-background-color strong{
    color: var(--brass);
}
.eyebrow{
    font-family:var(--font-sans);
    font-size: .75rem;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.32em;
    color:var(--brass);
}
.hairline{
    display:inline-block;
    width:3.5rem;
    height:1px;
    background:var(--brass);
    vertical-align:middle;
}
.text-brass{
    color:var(--brass)!important;
}
.text-brass-soft{
    color:var(--brass-soft)!important;
}
.text-offwhite{
    color:var(--offwhite)!important;
}
.text-muted-2{
    color:var(--muted);
}
.bg-navy{
    background:var(--navy-deep);
    color:var(--offwhite);
}
.bg-charcoal{
    background:var(--charcoal);
    color:var(--offwhite);
}
.bg-offwhite{
    background:var(--offwhite);
}
.serif{
    font-family:var(--font-serif);
}
.lh-rel{
    line-height:1.85;
}

/* Buttons */
.btn-jcl{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.95rem 2rem;
    font-size:.78rem;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.2em;
    border-radius:0;
    border:1px solid var(--offwhite);
    background:var(--offwhite);
    color:var(--navy-deep);
    transition:all .4s ease;
    text-decoration:none;
}
.btn-jcl:hover{
    background:transparent;
    color:var(--offwhite);
}
.btn-jcl.btn-jcl-brass{
    margin-top: 50px;
    background: transparent;
    color: var(--brass);
    border: 1px solid var(--brass);
}
.btn-jcl.btn-jcl-brass:hover{
    background: var(--brass);
    color: #fff;
    border: 1px solid var(--brass);
}
.btn-ghost{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.95rem 2rem;
    font-size:.78rem;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.2em;
    background:transparent;
    color:var(--offwhite);
    border:1px solid rgba(246,244,238,.5);
    border-radius:0;
    transition:all .4s ease;
    text-decoration:none;
}
.btn-ghost:hover{
    border-color:var(--brass);
    color:var(--brass);
}
.btn-dark-jcl{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.95rem 2rem;
    font-size:.78rem;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.2em;
    background:var(--navy-deep);
    color:var(--offwhite);
    border:1px solid var(--navy-deep);
    border-radius:0;
    transition:all .4s ease;
    text-decoration:none;
}
.btn-dark-jcl:hover{
    background:transparent;
    color:var(--navy-deep);
}

/* Header */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1050;
    background: rgb(1 20 52 / 33%);
    backdrop-filter: blur(12px);
    border-bottom:1px solid rgba(12,22,50,.08);
    transition:.4s ease;
    padding-top: 5px;
    padding-bottom: 5px;
}

.site-header.scrolled{
    background: var(--navy-deep);
    box-shadow: 0 10px 30px rgb(160 160 160 / 15%);
}

.navbar-brand img{
    width: 210px;
}
.nav-link-jcl{
    color: var(--offwhite)!important;
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing:.22em;
    font-weight:500;
    transition:.3s;
}

.nav-link-jcl:hover{
    color:var(--brass)!important;
}

.enquire-link{
    color:var(--brass);
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing:.22em;
    text-decoration:none;
    border: 1px solid rgb(184 153 104);
    padding: 10px 23px;
    font-weight: 500;
    transition: .3s;
}

.enquire-link:hover{
    color:var(--navy-deep);
    background: var(--offwhite);
}

.navbar-toggler{
    padding:0;
}

.navbar-toggler:focus{
    box-shadow:none;
}
/* Animated Mobile Menu Button */
.jcl-navbar-toggler{
    width:44px;
    height:44px;
    border:none;
    background:transparent;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    position:relative;
    z-index:1100;
}

.jcl-toggler-line{
    width:28px;
    height:2px;
    background:#fff;
    border-radius:10px;
    transition:all .35s ease;
    transform-origin:center;
}

/* Open State */
.jcl-navbar-toggler.active .jcl-toggler-line:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.jcl-navbar-toggler.active .jcl-toggler-line:nth-child(2){
    opacity:0;
    transform:scaleX(0);
}

.jcl-navbar-toggler.active .jcl-toggler-line:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

/* Hover Effect */
.jcl-navbar-toggler:hover .jcl-toggler-line{
    background:var(--brass);
}

/* Hero */
.hero{
    position:relative;
    height:100vh;
    min-height:720px;
    overflow:hidden;
}
.hero-s .hero-hr{
    opacity: 1;
    margin-top: 30px;
    width: 50%
}
.hero-logo{
    width: 50%
}
.hero-bg{
    position:absolute;
    inset:0;
    background:url('../../site_assets/img/hero-img.webp') center center/cover no-repeat;
    animation:heroZoom 18s ease-in-out infinite alternate;
    transform-origin:center center;
}

@keyframes heroZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.4);
    }
}
.hero .overlay-1{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(12,22,50,.7) 0%, rgba(12,22,50,.55) 45%, rgba(12,22,50,.85) 100%);
}
.hero .overlay-2{
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse at center, transparent 0%, rgba(12,22,50,.45) 80%);
}
.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
}
.hero h1{
    color:var(--offwhite);
    font-size:clamp(3.5rem,6vw,5rem);
    line-height:1.05;
}
.hero h1 .sub{
    display:block;
    margin-top:.75rem;
    font-style:italic;
    font-weight:300;
    color:var(--brass-soft);
    font-size:clamp(1.4rem,2.5vw,2.25rem);
    letter-spacing:.02em;
}
.hero p.lead-c{
    color:rgba(246,244,238,.8);
    font-weight:300;
    max-width:32rem;
}
.jcl-sectors{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.jcl-sectors span{
    color: var(--brass-soft);
    font-size:.78rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    margin-top: 20px;
    font-weight: 500;
}

.jcl-sectors span:not(:last-child)::after{
    content:"\2022";
    color:var(--offwhite);
    margin: 0 8px;
}
.services-sec{
    position: relative;
    background:url('../../site_assets/img/service-bg.jpg') no-repeat;
    background-size: cover;
    background-position: top right;
    background-attachment: fixed
}
.services-sec.hc-inn{
    background:url('../../site_assets/img/healthcare-2.jpg') no-repeat;
    background-attachment: fixed
}
.services-sec .container-xl{
    position: relative;
    z-index: 1
}
.services-sec:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(260deg, rgba(12, 22, 50, 0) 0%, rgb(12 22 50 / 57%) 40%, rgb(12 22 50) 100%);
}
.services-sec .section-title{
    color: #fff
}
.services-sec p{
    color: #fff
}
.founder-img{
    position:relative;
    overflow:hidden;
    box-shadow:
        0 25px 60px rgba(0,0,0,.18),
        0 8px 20px rgba(0,0,0,.08);

    background:#fff;
}

.founder-img img{
    width:100%;
}

.founder-info{
    position:absolute;
    left:24px;
    bottom:24px;

    padding:14px 18px;

    background:rgba(12,22,50,.92);
    backdrop-filter:blur(10px);

    border-left:3px solid var(--brass-soft);
    border-radius:0 8px 8px 0;
}

.founder-info span{
    display:block;
    margin-bottom:6px;

    color:var(--brass-soft);
    font-size:.72rem;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.founder-info h5{
    margin:0;

    color:#fff;
    font-size:1.15rem;
    font-weight:500;

    font-family:"Cormorant Garamond", serif;
}
.why-sec .btn-jcl{
    margin-top: 50px
}
.success-bg{
    position: relative;
    background:url('../../site_assets/img/success.jpg') no-repeat;
    background-size: cover;
    background-position: top right;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 100px
}
.opp-bg{
    background: #fff;
    padding-top: 50px;
    padding-bottom: 50px
}
.opp-bg:after{
    display: none;
}
.opp-bg .section-title{
    color: var(--deep-navy) !important
}
.success-bg .relative{
    z-index: 1;
    position: relative
}
.success-bg .section-title{
    color: #fff
}
.success-bg:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(260deg, rgba(12, 22, 50, 0) 0%, rgb(12 22 50 / 57%) 40%, rgb(12 22 50) 100%);
}
.prv-represented-list{
    border-top:1px solid rgba(184,153,104,0.2);
}

.prv-represented-location{
    color:rgba(184,153,104,0.8);
    font-weight:500;
    letter-spacing:0.5px;
}
/* Sections */
section{
    padding:7rem 0;
}

.section-title{
    font-size:clamp(1.9rem,3.2vw,3rem);
    line-height:1.15;
}
.text-body-1{
    color:var(--offwhite);
    font-size:1.02rem;
    line-height:1.85;
    font-weight:300;
}
.text-body-2{
    color:var(--muted);
    font-size:1.02rem;
    line-height:1.85;
    font-weight:300;
}

/* Process grid */
.step-grid{
    display:grid;
    gap:1px;
    background:rgba(184,153,104,.18);
}

.step{
    background:var(--navy-deep);
    padding:2.5rem;
    height:100%;
}
.step .num{
    font-family:var(--font-serif);
    color:var(--brass);
    font-size:1.875rem;
}
.step h3{
    color:var(--offwhite);
    font-size:1.25rem;
    margin-top:1.25rem;
}
.step p{
    color:rgba(246,244,238,.65);
    font-weight:300;
    line-height:1.8;
    font-size:.95rem;
    margin-top:1rem;
}

/* Healthcare list */
.hc-list{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:.75rem 1.5rem;
    padding-top:1rem;
}
.hc-list li{
    display:flex;
    align-items:center;
    gap:.75rem;
    font-size:.92rem;
}
.hc-list li::before{
    content:"";
    display:inline-block;
    width:1rem;
    height:1px;
    background:var(--brass);
}

/* Opportunities */
.opp-card{
    text-decoration:none;
    color:inherit;
    display:block;
}

.opp-img{
    position:relative;
    height: 350px;
    overflow:hidden;
    background:#e7e3da;
}

.opp-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 1.4s ease;
}

.opp-card:hover .opp-img img{
    transform:scale(1.05);
}

.opp-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent 40%, rgba(12,22,50,.75) 100%);
}

.opp-img .eyebrow{
    position:absolute;
    left: 1rem;
    top: 1rem;
    z-index:2;
    color: var(--offwhite);
    background: var(--navy-deep);
    padding: 5px 14px;
    font-weight: 500;
}

.opp-meta{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    gap:1rem;
    margin-top:1.25rem;
}

.opp-title{
    font-size: 1.55rem;
}

.opp-location{
    font-size:.875rem;
}

.opp-enquire{
    color:var(--brass);
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing:.22em;
    border-bottom:1px solid rgba(184,153,104,.4);
    padding-bottom:2px;
    text-decoration:none;
    font-weight: 600;
}
/* Represented list */
.rep-row{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    border-bottom:1px solid rgba(184,153,104,.2);
    padding:1.5rem 0;
    gap:1.5rem;
}
.rep-row .name{
    font-family:var(--font-serif);
    font-size:1.5rem;
    color:var(--offwhite);
}
.rep-row .name strong {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--brass);
}
/* Testimonials */
.quote-mark{
    font-family:var(--font-serif);
    color:var(--brass);
    font-size:3rem;
    line-height:1;
}
.testimonial{
    border-top:1px solid rgba(184,153,104,.4);
    padding-top:2rem;
    height:100%;
}
.testimonial blockquote{
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.85;
    font-weight: 300;
}
.testimonial figcaption{
    margin-top:2rem;
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.22em;
    color:var(--navy-deep);
}

/* CTA */
/*==================================
CTA Section
==================================*/

.cta-section{
    position:relative;
    overflow:hidden;
    padding:8rem 0;
    text-align:center;
}

.cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.06;
    background:radial-gradient(
        ellipse at 20% 30%,
        var(--brass),
        transparent 60%
        );
}

.cta-container{
    position:relative;
    z-index:2;
    max-width:52rem;
}

.cta-eyebrow{
    display:block;
    margin-top:1.5rem;
}

.cta-title{
    margin-top:1.5rem;
    margin-bottom:0;

    font-family:var(--font-serif);
    font-size:clamp(2.25rem,5vw,3.75rem);
    line-height:1.1;
    font-weight:500;
    color:var(--offwhite);
}

.cta-description{
    max-width:34rem;
    margin:1.75rem auto 0;

    color:rgba(246,244,238,.75);
    font-weight:300;
    line-height:1.85;
}

.cta-buttons{
    margin-top:3rem;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:1rem;
}

/* Footer */
footer{
    border-top:1px solid rgba(184,153,104,.15);
    padding: 1.5rem 0;
}

.footer-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 15px;
    flex-wrap:wrap;
}

footer .logo-ft{
    width:200px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    position: relative;
    padding: 0 8px;
    text-decoration: none;
}

/* Divider */
.footer-nav a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

footer a{
    color:rgba(246,244,238,.7);
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing: .13em;
    text-decoration:none;
    transition:all .3s ease;
}

footer a:hover{
    color:var(--brass);
}

.footer-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:12px;
}
.footer-contact a{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-contact a i{
    color: var(--brass);
    font-size: 14px;
    width: 16px;
}
.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:40px;
    height:40px;
    border:1px solid rgba(184,153,104,.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    letter-spacing:0;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--brass);
    color:#fff !important;
    border-color:var(--brass);
    transform:translateY(-2px);
}
.footer-social a i{
    width: auto;
}
.footer-social a:hover i{
    color:#fff !important;
}
.property-banner{
    position:relative;
    overflow:hidden;
    background-color: var(--navy-deep);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 650px
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(5,21,38,.92),rgba(5,21,38,.25));
}

.sale-tag{
    margin-bottom: 20px;
    z-index: 2;
    color: var(--offwhite);
    background: var(--navy-deep);
    padding: 5px 14px;
    display: inline-block;
    text-transform: uppercase;
}

.banner-content{
    position:absolute;
    left:0;
    right:0;
    bottom:60px;
    color:#fff;
}

.banner-content h1{
    font-family:var(--font-serif);
    font-size:3rem;
    margin-bottom:20px;
}

.banner-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom: 20px;
}

.meta-box{
    background: rgb(5 21 38 / 36%);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(184,153,104,.4);
    padding: 14px 18px;
    min-width: 240px;
}

.meta-label{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--brass);
    font-family:var(--font-sans);
    font-weight: 500;
}

.meta-box h6{
    margin:0;
    font-size: 15px;
    font-weight: 500;
    color:var(--offwhite);
    font-family: var(--font-sans);
}

.content-section{
    padding:80px 0;
}



.description{
    line-height:2;
    color:var(--muted);
    font-size:1.05rem;
}

.feature-block{
    border:1px solid var(--border);
    padding:35px;
    margin-bottom:35px;
    background:#fff;
}

.feature-block h3{
    font-family:var(--font-serif);
    color:var(--navy);
    font-size:1.7rem;
    margin-bottom:20px;
}

.enquiry-box{
    background:var(--navy-deep);
    color:#fff;
    padding: 25px;
}

.form-control{
    border-radius:0;
    border:1px solid rgba(255,255,255,.2);
    background:transparent;
    color:#fff;
    padding:12px;
    font-size: 14px;
}

.form-control:focus{
    box-shadow:none;
    border-color:var(--brass);
   
    color:#fff;
}
.enquiry-box .form-control:focus{
        background:var(--navy-deep);
}
.form-control::placeholder{
    color:#ddd;
}

.btn-theme{
    background: transparent;
    color: var(--brass);
    border:none;
    border-radius:0;
    padding:14px 40px;
    text-transform:uppercase;
    letter-spacing:1px;
    border: 1px solid var(--brass);
}

.btn-theme:hover{
    background: var(--brass);
    color:#fff;
}

@media(max-width:991px){

    .property-banner img{
        height:420px;
    }

    .banner-content h1{
        font-size:2.2rem;
    }

    .enquiry-box{
        padding:40px 25px;
    }

}

@media(max-width:767px){

    .property-banner img{
        height:350px;
    }

    .sale-tag{
        left:20px;
        top:20px;
    }

    .banner-content{
        bottom:30px;
    }

    .banner-content h1{
        font-size:1.8rem;
    }

    .banner-meta{
        flex-direction:column;
    }

}
/* Mobile nav */
.mobile-toggle{
    background:none;
    border:none;
    padding:.5rem;
    display:flex;
    flex-direction:column;
    gap:6px;
}
.mobile-toggle span{
    display:block;
    width:24px;
    height:1px;
    background:var(--navy-deep);
}
.mobile-menu{
    display:none;
    background:var(--offwhite);
    border-top:1px solid rgba(12,22,50,.1);
}
.mobile-menu.open{
    display:block;
}
.mobile-menu a{
    display:block;
    padding:.75rem 0;
    color:var(--navy-deep);
    text-decoration:none;
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.22em;
}
/* ===================================
   Bread Page Header
=================================== */

.bread-page-header {
    padding: 110px 0 50px;
    background-color: var(--navy-deep);
    background-image: url(../../site_assets/img/bread-bg.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    border-bottom: 1px solid #ececec;
    position: relative;
    overflow: hidden;
}

/* Soft decorative circle */

.bread-page-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(260deg, rgba(12, 22, 50, 0) 0%, rgb(5 21 38 / 65%) 40%, rgb(12 22 50) 100%);
}

.bread-page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.breadcrumb-nav a {
    color: #777;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb-nav a:hover {
    color: var(--brass);
}

.breadcrumb-nav span {
    color: #a0a0a0;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 300;
    color: var(--offwhite);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.section-subtitle{
    display:inline-block;
    color:var(--brass);
    font-size:.72rem;
    font-family:var(--font-sans);
    font-weight:600;
    letter-spacing:.28em;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-heading h2{
    font-family:var(--font-serif);
    font-size:3rem;
    color:var(--navy-deep);
    font-weight:500;
    margin:0;
    line-height:1.15;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.service-card{

    padding: 35px;

    border:1px solid var(--border);

    border-radius:20px;

    background: var(--navy-deep);

    transition:.35s ease;

    position:relative;
}

.service-card::before{

    content:"";

    position:absolute;

    left:42px;

    top:0;

    width:60px;

    height:3px;

    background:var(--brass);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(5,21,38,.08);

    border-color:rgba(184,153,104,.35);

}

.service-card:hover::before{

    width:110px;

}

.service-icon{

    width:64px;

    height:64px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(184,153,104,.10);

    color:var(--brass);

    font-size:24px;

    margin-bottom:26px;

}

.service-card h3{

    font-family:var(--font-serif);

    font-size:2rem;

    color: var(--brass);

    margin-bottom:18px;

    font-weight:500;
}

.service-card p{

    margin:0 0 14px;

    color: var(--offwhite);

    font-size:1rem;

    line-height:1.9;

    font-family:var(--font-sans);
}

.service-card p:last-child{

    margin-bottom:0;

}
.hc-new{

    width:100%;

    padding: 30px;

    position:relative;

    border: 1px solid var(--border);
}

.hc-new::before{

    content:"";

    position:absolute;

    left: -1px;

    top:8px;

    width:2px;

    height:100px;

    background:var(--brass);
}

.hc-new h2{

    margin:0 0 22px;

    font-family:var(--font-serif);

    font-size:clamp(2.2rem,3vw,2.8rem);

    font-weight:500;

    line-height:1.1;

    color:var(--navy-deep);

}

.hc-new p{
}

.hc-new p:last-child{

    margin-bottom:0;

}

@media(max-width:991px){

    .hc-new{

        margin-bottom:60px;

    }

}
.contact-box{
    background:var(--navy-deep);
    border:1px solid rgba(184,153,104,.15);
}

.contact-info{
    border-right:1px solid rgba(255,255,255,.08);
}

.text-brass{
    color:var(--brass);
}

.contact-text{
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

.contact-link{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.contact-link i{
    color:var(--brass);
    width:20px;
}

.contact-link:hover{
    color:var(--brass-soft);
}

.social-box{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-box:hover{
    background:var(--brass);
    color: #ffffff;
}

.contact-input{
    background:transparent;
    border: 1px solid rgba(255,255,255,.15);
    border-radius:0;
    color:#fff;
    padding: .9rem;
    font-size: 15px;
}

.contact-input:focus{
    background:transparent;
    color:#fff;
    box-shadow:none;
    border-color:var(--brass);
}

.contact-input::placeholder{
    color:rgba(255,255,255,.55);
}

.contact-input:-webkit-autofill{
    -webkit-text-fill-color:#fff;
    transition:background-color 9999s;
}

@media (max-width:991px){

    .contact-info{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

}
.privacy-section{
    padding:100px 0;
    background:#fff;
}

.privacy-header{
    margin:0 auto 60px;
}

.privacy-header h1{
    font-family:var(--font-serif);
    font-size:58px;
    color:var(--navy-deep);
    margin-bottom:20px;
}

.privacy-line{
    width:80px;
    height:2px;
    background:var(--brass);
    margin: 0 0 25px;
}

.privacy-header p{
    margin:auto;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
    font-family:var(--font-sans);
}

.privacy-content{
    margin:0 auto;
}

.privacy-content h2{
    margin:55px 0 18px;
    font-size:34px;
    font-family:var(--font-serif);
    color:var(--navy-deep);
    font-weight:600;
}

.privacy-content p{
    color:var(--muted);
    font-size:16px;
    line-height:2;
    margin:0;
    font-family:var(--font-sans);
}

.privacy-content ul{
    margin:20px 0 0 22px;
    padding:0;
}

.privacy-content li{
    margin-bottom:12px;
    color:var(--muted);
    line-height:1.9;
    font-family:var(--font-sans);
}

@media(max-width:768px){
.hero-content .btn-jcl, .hero-content .btn-ghost{
    width: 70%;
    justify-content:center;
    text-align: center;
}
.btn-jcl, .btn-ghost{
    justify-content:center;
    text-align: center;
}
    .privacy-section{
        padding:70px 0;
    }

    .privacy-header h1{
        font-size:40px;
    }

    .privacy-content h2{
        font-size:28px;
        margin-top:40px;
    }

    .privacy-header p,
    .privacy-content p,
    .privacy-content li{
        font-size:15px;
    }
}
.agree-logo{
    background: var(--navy-deep);
    padding: 10px;
    display: inline-block;
}
.agree-logo img{
    width: 200px;
}
.confidentiality-page{

    background:#fff;
    padding:60px 0;
    font-family:var(--font-sans);

}

.agreement-header{

text-align:center;

margin-bottom: 25px;
}

.agreement-header h1{

font-family:var(--font-serif);

font-size: 44px;

margin: 8px 0;
}

.agreement-header p{

    max-width:700px;
    margin:auto;
    color:var(--muted);

}

.listing-card{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-bottom: 20px;
}

.listing-item{

background:#fff;

border-radius: 0px;

padding:30px;

border:1px solid var(--border);

text-align:center;
}

.listing-item span{

    display:block;
    color:var(--muted);
    margin-bottom:10px;

}

.listing-item strong{

    color:var(--navy);
    font-size:20px;

}

.agreement-paper{



margin-bottom: 20px;

overflow:auto;

margin-bottom: 20px;
}

.agreement-paper h3{

font-family:var(--font-serif);

margin-bottom: 15px;
}

.agreement-paper p{color: #111111;line-height: 1.4;font-size: 14px;margin-bottom: 6px;}

.agreement-paper li{

margin-bottom: 3px;

color: #111111;

line-height: 1.6;

font-size: 14px;
}



.agreement-form h3{

font-family:var(--font-serif);

margin-bottom: 30px;
}
.agreement-form label{
    font-size: 14px;
    font-weight: 500;
}

.agreement-form .form-control,
.agreement-form .form-select{border:1px solid var(--border);border-radius: 0px;padding: 8px;color: #000;font-size: 14px;}

.agreement-form .form-control:focus,
.agreement-form .form-select:focus{

    border-color:var(--brass);
    box-shadow:none;

}

.upload-box{background: #faf7ef;border: 1px solid var(--brass-soft);border-radius: 5px;padding: 15px;text-align: left;margin-top: 20px !important;}

.upload-box h5{margin-bottom: 6px;font-size: 16px;}

.dpg-ca-signature{

    margin-top:40px;

}

.dpg-ca-signature-wrapper{

    width:100%;
    height:200px;
    border:2px dashed var(--border);
    border-radius:12px;
    overflow:hidden;
    background:#fff;

}

#dpg-ca-signature-pad{

    width:100%;
    height:100%;
    display:block;
    cursor:pointer;

}
.abn-n{
      font-family: var(--font-sans);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}
.agreement-check{text-align: center;border-radius: 0px;display: flex;justify-content: center;margin-top: 15px;}

.agreement-btn{

    background:var(--navy);
    color:white;
    width:100%;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;

}

.agreement-btn:hover{

    background:var(--brass);
    color:white;

}

@media(max-width:992px){

.listing-card{

grid-template-columns:1fr;

}

.agreement-header h1{

font-size:42px;

}

.agreement-paper,
.agreement-form{


}

}

@media(max-width:576px){

.confidentiality-page{

padding:60px 0;

}

.agreement-header h1{

font-size:34px;

}

}
.insights-section{
    background: var(--offwhite);
}

.insight-card{
    background:#fff;
    border:1px solid var(--border);
    height:100%;
}

.insight-image{
    display:block;
    overflow:hidden;
}

.insight-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.45s;
}

.insight-image:hover img{
    transform:scale(1.05);
}

.insight-content{
    padding:22px;
}

.insight-content::before{
    content:"";
    display:block;
    width:42px;
    height:2px;
    background:var(--brass);
    margin-bottom:16px;
}

.insight-title{
    display:block;
    font-family:var(--font-serif);
    font-size:1.6rem;
    line-height:1.25;
    color:var(--navy-deep);
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.insight-title:hover{
    color:var(--brass);
}

.insight-content p{
    font-family:var(--font-sans);
    color:var(--muted);
    font-size:.95rem;
    line-height:1.7;
    margin-bottom:18px;
}

.read-more{
    display:inline-block;
    color: var(--brass);
    text-decoration:none;
    font-size:.95rem;
    font-weight: 500;
    position:relative;
    transition:.3s;
}

.read-more::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:1px;
    background: var(--brass);
    transition:.3s;
}

.read-more:hover::after{
    width:100%;
}

@media (max-width:991px){

    .insight-image img{
        height:210px;
    }

    .insight-title{
        font-size:1.45rem;
    }

    .insight-content{
        padding:18px;
    }

}

@media (max-width:767px){

    .insight-image img{
        height:200px;
    }

    .insight-title{
        font-size:1.3rem;
    }

    .insight-content{
        padding:16px;
    }

}
/*==========================
    Insight Detail
==========================*/
.insd-banner{
    position: relative;
    overflow: hidden;
    padding: 280px 0 90px;
}

.insd-banner-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insd-banner-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,21,38,.92) 0%,
        rgba(5,21,38,.82) 35%,
        rgba(22,33,72,.72) 100%
    );
}

.insd-banner .container{
    position: relative;
    z-index: 2;
}

.insd-banner-content{
    max-width: 850px;
}
.insd-banner-title{

    font-family:var(--font-serif);

    color:#fff;

    font-size:4rem;

    line-height:1.15;

    margin-bottom:25px;

}

.insd-banner-meta{

    display:flex;

    gap:12px;

    color:#fff;

    font-size:1rem;

    letter-spacing:.5px;

}
.insd-section{
    background: var(--offwhite);
}


/* Title */

.insd-title{
    font-family:var(--font-serif);
    font-size:3.25rem;
    line-height:1.15;
    color:var(--navy-deep);
    margin-bottom:28px;
}

/* Intro */

.insd-intro{
    font-size:1.2rem;
    line-height:1.9;
    color:var(--charcoal);
    margin-bottom:35px;
}

/* Headings */

.insd-heading{
    font-family:var(--font-serif);
    color:var(--navy);
    font-size:2.15rem;
    margin-top:55px;
    margin-bottom:18px;
    position:relative;
    padding-bottom:12px;
}

.insd-heading:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:65px;
    height:2px;
    background:var(--brass);
}

/* Paragraph */

.insd-text{
    font-size:1.05rem;
    line-height:2;
    color:var(--muted);
    margin-bottom:20px;
}

/* List */

.insd-list{
    margin:30px 0;
    padding-left:0;
    list-style:none;
}

.insd-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:16px;
    color:var(--muted);
    line-height:1.8;
}

.insd-list li:before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--brass);
    position:absolute;
    left:0;
    top:12px;
}



/*==========================
    Sidebar
==========================*/

.insd-sidebar{
    position:sticky;
    top:120px;
}

.insd-sidebar-title{
    font-family:var(--font-serif);
    font-size:2rem;
    color:var(--navy-deep);
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:2px solid var(--brass);
}

/* Related Item */

.insd-related-item{
    display:flex;
    gap:18px;
    align-items:center;
    padding:18px 0;
    text-decoration:none;
    border-bottom:1px solid var(--border);
    transition:.35s;
}

.insd-related-item:last-child{
    border-bottom:none;
}

.insd-related-img{
    width:110px;
    height:85px;
    object-fit:cover;
    border-radius:5px;
    flex-shrink:0;
}

.insd-related-content{
    flex:1;
}

.insd-related-title{
    font-family:var(--font-serif);
    font-size:1.25rem;
    line-height:1.35;
    color:var(--navy-deep);
    margin-bottom:8px;
    transition:.3s;
}

.insd-related-date{
    color:var(--muted);
    font-size:.85rem;
}

.insd-related-item:hover .insd-related-title{
    color:var(--brass);
}

.insd-related-item:hover .insd-related-img{
    opacity:.88;
}

/*==========================
    Responsive
==========================*/

@media(max-width:1199px){

.insd-title{
    font-size:2.8rem;
}

}

@media(max-width:991px){

.insd-sidebar{
    position:static;
    margin-top:70px;
}

.insd-title{
    font-size:2.4rem;
}

.insd-heading{
    font-size:1.9rem;
}

}

@media(max-width:767px){
    .insd-banner-title{
        font-size: 2rem
    }
.insd-section{
    padding:60px 0 !important;
}

.insd-title{
    font-size:2rem;
}

.insd-intro{
    font-size:1.05rem;
}

.insd-heading{
    font-size:1.7rem;
}

.insd-text{
    font-size:1rem;
}


.insd-related-item{
    gap:15px;
}

.insd-related-img{
    width:90px;
    height:75px;
}

.insd-related-title{
    font-size:1.05rem;
}

}
/* =========== MEDIA QUERIES =========== */
/* Small devices and up */
@media (min-width:576px){
    .step-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Large devices and up */
@media (min-width:992px){
    .mobile-toggle{
        display:none;
    }

    .step-grid{
        grid-template-columns:repeat(3,1fr);
    }

    section{
        padding:7rem 0;
    }
}

/* Mobile only */

@media (max-width: 600px){
    .hero-bg{
        background-position-x: -300px;
    }
}
@media (max-width: 768px){
    .services-sec{
        background:url('../../site_assets/img/service-bg-mob.jpg') no-repeat;
        background-position: center;
        background-attachment: fixed;
        background-size: cover
    }

}
@media (max-width:991px){
    .site-header{
        background-color:var(--navy-deep);
    }

    .navbar-collapse{
        background:var(--navy-deep);
        margin-top:20px;
        padding:20px;
        border-top:1px solid rgba(0,0,0,.08);
        opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .1s ease;
    }
.navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-collapse.collapsing {
    height: auto !important;
    opacity: 0;
    transform: translateY(-10px);
  }
    .navbar-nav{
        gap:10px;
    }
    .navbar-collapse{
        margin-top:20px;
        padding: 10px;
        background: var(--navy-deep);
        backdrop-filter:blur(20px);
        border:1px solid rgba(184,153,104,.15);
        box-shadow:0 20px 60px rgba(0,0,0,.35);
    }

    .navbar-nav{
        gap:0 !important;
    }

    .nav-link-jcl{
        padding: 14px 0 !important;
        border-bottom:1px solid rgba(255,255,255,.08);
        font-size:.8rem;
        letter-spacing:.18em;
    }

    .enquire-link{
        width: 38%;
        justify-content:center;
        margin-top: 20px;
        padding:14px 20px;
        display: inline-block;
        text-align: center;
    }

    .mobile-divider{
        height:1px;
        background:rgba(184,153,104,.2);
        margin:25px 0;
    }

    .mobile-contact{
        text-align: left;
    }

    .mobile-contact-item{
        display:flex;
        align-items: center;
        justify-content: start;
        gap:12px;
        padding:12px 0;
        color:rgba(255,255,255,.85);
        text-decoration:none;
        text-transform:none;
        letter-spacing:.04em;
        font-size:.9rem;
    }

    .mobile-contact-item i{
        color:var(--brass);
        font-size:1rem;
    }

    .mobile-social{
        display:flex;
        justify-content: start;
        gap:14px;
        margin-top:20px;
    }

    .mobile-social a{
        width:44px;
        height:44px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        border:1px solid rgba(184,153,104,.3);
        color:var(--offwhite);
        transition:.3s;
        text-decoration: none
    }

    .mobile-social a:hover{
        background:var(--brass);
        color:var(--navy-deep);
        transform:translateY(-3px);
    }
    .navbar-collapse.collapsing{
        
    }

    .navbar-collapse.show{
        
    }

    @keyframes mobileMenuFade{
        from{
            opacity:0;
            transform:translateY(-15px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }
    .nav-link-jcl{
        padding:10px 0;
    }
    .hero .overlay-1{
        opacity: .8
    }
    .hero .overlay-2{
        opacity: .7
    }
    .hairline{
        width: 1.5rem
    }
    .eyebrow{
        font-size: .65rem;
    }
    .hero-bottom{
        padding: 1rem 0rem
    }
    .hero-bottom .h-scroll{
        display: none
    }
    .btn-jcl-brass{
        margin-bottom: 20px
    }
    .success-bg{
        background-position: center
    }
    .rep-row{
        padding: 15px 0px
    }
    .rep-row .name{
        font-size: 14px
    }
    .step {
        padding: 20px 0px
    }
    section {
        padding: 5rem 0;
    }
    .hero-bg{
        animation:heroZoom 15s linear infinite alternate;
    }
    .cta-section{
        padding:5rem 0;
    }

    .cta-eyebrow{
        margin-top:1rem;
    }

    .cta-title{
        margin-top:1rem;
    }

    .cta-description{
        margin-top:1.25rem;
    }

    .cta-buttons{
        margin-top:2rem;
        flex-direction:column;
    }

    .cta-buttons a{
        width:100%;
        max-width:320px;
    }
    .services-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .services-section{

        padding:70px 0;

    }

    .section-heading{

        margin-bottom:50px;

    }

    .section-heading h2{

        font-size:2.3rem;

    }

    .service-card{

        padding:30px;

    }

    .service-card h3{

        font-size:1.7rem;

    }
    .footer-wrapper{
        flex-direction: column;
        text-align: center;
    }

    /* Order items */
    .footer-brand{
        order: 1;
    }

    .footer-contact{
        order: 2;
        align-items: center;
    }

    .footer-nav{
        order: 3;
        gap: 18px;
    }
}