
:root{
    --primary:#072b57;
    --accent:#f5a623;
}

body{
    margin:0;
    font-family: 'Lato', sans-serif;
}

/* HEADER */

.custom-header{
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    min-height:85px;
    padding:0;
}

.logo-img{
    height:78px;
    width:auto;
}

/* DESKTOP MENU */

.navbar-nav .nav-link{
    color:#111;
    font-size:15px;
    font-weight:600;
    position:relative;
    transition:.3s;
    padding:10px 0 !important;
}

.navbar-nav .nav-link:hover{
    color:var(--primary);
}

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

.navbar-nav .nav-link.active::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-8px;
    width:30px;
    height:3px;
    background:var(--accent);
    border-radius:20px;
}

/* CALL BUTTON */

.call-btn{
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
    transition:.3s;
}

.call-btn:hover{
    color:#fff;
    background:#051d3d;
}

/* MOBILE TOGGLE */

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.menu-icon{
    font-size:32px;
    color:var(--primary);
}

/* MOBILE MENU */

.offcanvas{
    width:300px !important;
}

.mobile-logo{
    height:50px;
}

.mobile-nav a{
    display:block;
    text-decoration:none;
    color:#111;
    font-weight:600;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.mobile-call-btn{
    background:var(--primary);
    color:#fff !important;
    text-align:center;
    border-radius:10px;
    margin-top:20px;
    border:none !important;
}

/* DESKTOP */

@media(min-width:992px){

    .navbar-collapse{
        display:flex !important;
        justify-content:space-between;
        align-items:center;
        width:100%;
        margin-left:70px;
    }

    .navbar-nav{
        gap:42px;
    }

}

/* MOBILE */

@media(max-width:991px){

    .navbar{
        min-height:75px;
    }

    .logo-img{
        height:70px;
    }

}






.hero-section{
    position:relative;
    background:url('img/wtp.jpg') center center/cover no-repeat;
    padding:0px 10px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,32,67,.92) 0%,
        rgba(5,32,67,.75) 35%,
        rgba(5,32,67,.20) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    padding-top:60px;
}

.hero-tag{
    color:#f0a81f;
    font-weight:700;
    font-size:18px;
}

.hero-content h1{
    font-size:78px;
    line-height:0.95;
    font-weight:800;
    letter-spacing:-2px;
    margin:15px 0 25px;
}

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

.hero-content p{
    font-size:20px;
    line-height:1.7;
    max-width:500px;
    margin-bottom:45px;
}

.hero-features{
    display:flex;
    gap:30px;
    margin-bottom:40px;
}

.feature-box{
    text-align:center;
    color:#fff;
    min-width:90px;
}

.feature-icon{
    width:65px;
    height:65px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 12px;
    font-size:26px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-explore{
    background:#d99b1d;
    color:#fff;
    padding:15px 35px;
    font-weight:700;
}

.btn-contact{
    border:1px solid #d99b1d;
    color:#fff;
    padding:15px 35px;
    font-weight:700;
}

.property-form{
    position:relative;
    z-index:2;
    background:#fff;
    border-radius:18px;
    padding:35px;
    margin-top:40px;
    box-shadow:0 15px 50px rgba(0,0,0,.2);
}

.property-form h2{
    text-align:center;
    font-weight:800;
    color:#132447;
}

.property-form h5{
    text-align:center;
    margin-bottom:30px;
}

.property-form h5 span{
    color:#d99b1d;
    font-weight:700;
}

.property-form label{
    font-size:13px;
    margin-bottom:6px;
    font-weight:600;
}

.form-control,
.form-select{
    height:50px;
}

textarea.form-control{
    height:auto;
}

.submit-btn{
    width:100%;
    border:none;
    background:#d99b1d;
    color:#fff;
    font-weight:700;
    height:55px;
    border-radius:8px;
}

.secure-text{
    text-align:center;
    margin-top:15px;
    color:#666;
    font-size:13px;
}

.stats-bar{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:95%;
    background:#041f4a;
    border-radius:16px;
    display:flex;
    justify-content:space-around;
    padding:30px;
    z-index:5;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
    margin-top: 30px;
}

.stat-item{
    text-align:center;
}

.stat-item h3{
    color:#f0a81f;
    font-weight:800;
}

.stat-item p{
    margin:0;
}

/* MOBILE */

@media(max-width:991px){

.hero-section{
    min-height:auto;
    padding:0px 0 10px;
}

.hero-content{
    text-align:center;
}

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

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

.hero-features{
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.stats-bar{
    position:relative;
    transform:none;
    left:auto;
    bottom:auto;
    margin-top:40px;
    width:100%;
    flex-wrap:wrap;
    gap:25px;
}

.property-form{
    margin-top:50px;
}

}



.stats-section{
    position:relative;
    z-index:10;
}

.stats-bar{
    background:#041f4a;
    border-radius:18px;
    padding:25px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.stat-item{
    flex:1;
    text-align:center;
    color:#fff;
}

.stat-icon{
    font-size:28px;
    margin-bottom:10px;
}

.stat-item h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:5px;
}

.stat-item p{
    margin:0;
    color:#d7d7d7;
}


.stats-bar{
    background:#041f4a;
    border-radius:18px;
    padding:0px;
    display:flex;
    justify-content:space-between;
    gap:0;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    border:1px solid rgba(255,255,255,.15);
}

.stat-item{
    flex:1;
    text-align:center;
    color:#fff;
    padding:15px;
    position:relative;
}

/* Desktop Divider */
.stat-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:55px;
    background:rgba(255,255,255,.18);
}


@media(max-width:767px){

    .stats-bar{
        display:flex;
        flex-wrap:wrap;
        padding:0;
        overflow:hidden;
    }

    .stat-item{
        width:50%;
        flex:0 0 50%;
        padding:20px 10px;
        border-right:1px solid rgba(255,255,255,.15);
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    /* Desktop divider remove */
    .stat-item::after{
        display:none;
    }

    /* Right column border remove */
    .stat-item:nth-child(2),
    .stat-item:nth-child(4){
        border-right:none;
    }

    /* Last row bottom border remove */
    .stat-item:nth-child(3),
    .stat-item:nth-child(4){
        border-bottom:none;
    }

}





.custom-footer{
    background:linear-gradient(
        90deg,
        #06254e 0%,
        #031b3d 100%
    );
    color:#fff;
    padding-top:35px;
}

.footer-logo{
    max-width:220px;
    margin-bottom:15px;
}

.footer-desc{
    color:#d7dbe5;
    line-height:1.8;
    font-size:15px;
    margin-bottom:20px;
}

.footer-border{
    border-left:1px solid rgba(255,255,255,.15);
    padding-left:35px;
}

.custom-footer h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#f4b122;
}

.contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.contact-list li{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    color:#fff;
    line-height:1.6;
}

.contact-list i{
    color:#f4b122;
    min-width:20px;
    margin-top:3px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#f4b122;
    border-color:#f4b122;
}

.footer-bottom{
    text-align:center;
    padding:15px;
    margin-top:25px;
    border-top:1px solid rgba(255,255,255,.12);
    color:#d7dbe5;
    font-size:14px;
}

/* Mobile */

@media(max-width:991px){

    .footer-border{
        border-left:none;
        padding-left:12px;
    }

    .custom-footer{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .contact-list li{
        justify-content:center;
        text-align:left;
    }

}







.why-choose-section{
    padding:40px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:20px;
}

.sub-title{
    color:#d89a19;
    font-weight:700;
    font-size:15px;
    letter-spacing:1px;
    position:relative;
    display:inline-block;
    margin-bottom:12px;
}

.sub-title::before,
.sub-title::after{
    content:"";
    width:40px;
    height:2px;
    background:#e5c37a;
    position:absolute;
    top:50%;
}

.sub-title::before{
    right:100%;
    margin-right:15px;
}

.sub-title::after{
    left:100%;
    margin-left:15px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0d2247;
    margin:0;
}

.why-row{
    border-top:1px solid transparent;
}

.why-box{
    text-align:center;
    padding:20px 30px;
    position:relative;
    height:100%;
}

.why-box::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:110px;
    background:#e7e7e7;
}

.col-lg-3:last-child .why-box::after{
    display:none;
}

.why-icon{
    width:72px;
    height:72px;
    border:1px solid #d89a19;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    color:#d89a19;
    font-size:32px;
}

.why-box h4{
    font-size:24px;
    font-weight:700;
    color:#0d2247;
    margin-bottom:15px;
}

.why-box p{
    color:#44516c;
    line-height:1.8;
    margin:0;
    font-size:16px;
}

/* Mobile */

@media(max-width:991px){

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

    .why-box{
        padding:25px 15px;
        border:1px solid #eeeeee;
    }

    .why-box::after{
        display:none;
    }

    .why-icon{
        width:60px;
        height:60px;
        font-size:26px;
    }

    .why-box h4{
        font-size:18px;
    }

    .why-box p{
        font-size:14px;
    }

}