.y1-stats-section{
    padding:0;
    margin:0;
}

.y1-stats-box{
    background:
    linear-gradient(
    90deg,
    #001f4d 0%,
    #012d6a 50%,
    #001f4d 100%);
    
    border:1px solid rgba(255,255,255,.25);
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.y1-stat-item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 9px 16px;
    color: #fff;
    position: relative;
    min-height: 98px;
}

/* Desktop Divider */

.y1-stat-item::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:55px;
    background:rgba(255,255,255,.20);
}

.y1-last-item::after{
    display:none;
}

.y1-stat-icon{
    font-size:42px;
    color:#d9a11a;
    line-height:1;
}

.y1-stat-content h3{
    margin:0 0 5px;
    font-size:34px;
    font-weight:800;
    color:#fff;
}

.y1-stat-content p{
    margin:0;
    font-size:17px;
    color:#ffffff;
    opacity:.95;
}

/* MOBILE */

@media(max-width:991px){

    .y1-stat-item{
        flex-direction:column;
        text-align:center;
        gap:10px;
        padding:22px 12px;
        min-height:150px;
    }

    .y1-stat-item::after{
        display:none;
    }

    .y1-stat-item{
        border-right:1px solid rgba(255,255,255,.15);
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .col-6:nth-child(2) .y1-stat-item,
    .col-6:nth-child(4) .y1-stat-item{
        border-right:none;
    }

    .col-6:nth-child(3) .y1-stat-item,
    .col-6:nth-child(4) .y1-stat-item{
        border-bottom:none;
    }

    .y1-stat-icon{
        font-size:34px;
    }

    .y1-stat-content h3{
        font-size:24px;
    }

    .y1-stat-content p{
        font-size:14px;
    }

}








.y2-property-section{
    padding:40px 0;
    background:#f8f8f8;
}

.y2-heading{
    text-align:center;
    margin-bottom:45px;
}

.y2-subtitle{
    color:#d8a11d;
    font-weight:700;
    font-size:14px;
    position:relative;
    display:inline-block;
    margin-bottom:10px;
}

.y2-subtitle:before,
.y2-subtitle:after{
    content:"";
    position:absolute;
    top:50%;
    width:35px;
    height:2px;
    background:#e0c07a;
}

.y2-subtitle:before{
    right:100%;
    margin-right:12px;
}

.y2-subtitle:after{
    left:100%;
    margin-left:12px;
}

.y2-heading h2{
    color:#0b2248;
    font-size:42px;
    font-weight:800;
    margin:0;
}

.y2-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:10px;
    overflow:hidden;
    height:100%;
    text-align:center;
    transition:.3s;
    position:relative;
}

.y2-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.y2-image{
    height:240px;
    overflow:hidden;
}

.y2-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.y2-icon{
    width:64px;
    height:64px;
    background:#072b57;
    border:3px solid #d8a11d;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d8a11d;
    font-size:26px;
    margin:-32px auto 15px;
    position:relative;
    z-index:2;
}

.y2-content{
    padding:0 20px 25px;
}

.y2-content h4{
    font-size:24px;
    font-weight:700;
    color:#0b2248;
    margin-bottom:8px;
}

.y2-content p{
    color:#555;
    font-size:15px;
    margin-bottom:20px;
}

.y2-btn{
    display:inline-block;
    padding:10px 24px;
    border:1px solid #d8a11d;
    color:#0b2248;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    border-radius:4px;
    transition:.3s;
}

.y2-btn:hover{
    background:#d8a11d;
    color:#fff;
}

/* Mobile */

@media(max-width:991px){

    .y2-property-section{
        padding:30px 0;
    }

    .y2-heading h2{
        font-size:28px;
    }

    .y2-image{
        height:150px;
    }

    .y2-icon{
        width:52px;
        height:52px;
        margin-top:-26px;
        font-size:20px;
    }

    .y2-content{
        padding:0 12px 18px;
    }

    .y2-content h4{
        font-size:16px;
        min-height:40px;
    }

    .y2-content p{
        font-size:12px;
        margin-bottom:15px;
    }

    .y2-btn{
        padding:8px 16px;
        font-size:11px;
    }

}






.y3-consult-section{
    padding:40px 0;
    background:#ffffff;
}

.y3-consult-wrapper{
    background:
    linear-gradient(
        90deg,
        rgba(3,31,76,.95) 0%,
        rgba(3,31,76,.82) 35%,
        rgba(3,31,76,.45) 100%
    ),
    url('img/wtp.jpg');

    background-size:cover;
    background-position:center;
    border-radius:12px;
    overflow:hidden;
    padding:18px;
    border:1px solid rgba(255,255,255,.12);
}

/* LEFT SIDE */

.y3-left-content{
    padding:35px 20px 35px 20px;
    color:#fff;
}

.y3-small-title{
    color:#d8a11d;
    font-size:16px;
    font-weight:700;
    display:block;
    margin-bottom:18px;
}

.y3-left-content h2{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:30px;
}

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

.y3-feature-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size:18px;
}

.y3-feature-list i{
    color:#d8a11d;
    font-size:18px;
}

/* FORM */

.y3-form-card{
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.y3-form-card h3{
    text-align:center;
    font-size:36px;
    font-weight:800;
    color:#102347;
    margin-bottom:25px;
}

.y3-form-card h3 span{
    color:#d8a11d;
}

.y3-form-card label{
    font-size:13px;
    font-weight:600;
    margin-bottom:6px;
    color:#444;
}

.y3-form-card .form-control,
.y3-form-card .form-select{
    height:48px;
    border:1px solid #ddd;
}

.y3-submit-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:6px;
    background:#d8a11d;
    color:#fff;
    font-weight:700;
    font-size:15px;
    margin-top:8px;
}

.y3-secure-text{
    text-align:center;
    color:#777;
    margin-top:14px;
    font-size:13px;
}

/* MOBILE */

@media(max-width:991px){

    .y3-consult-section{
        padding:50px 0;
    }

    .y3-left-content{
        text-align:center;
        padding:25px 15px;
    }

    .y3-left-content h2{
        font-size:34px;
    }

    .y3-feature-list{
        display:inline-block;
        text-align:left;
    }

    .y3-form-card{
        margin-top:25px;
        padding:20px;
    }

    .y3-form-card h3{
        font-size:26px;
    }

}



.y4-testimonial-section{
    padding:30px 0;
    background:#fff;
}

.y4-heading{
    text-align:center;
    margin-bottom:40px;
}

.y4-title{
    font-size:34px;
    font-weight:800;
    color:#0d2247;
    position:relative;
}

.y4-title:before,
.y4-title:after{
    content:'';
    position:absolute;
    top:50%;
    width:50px;
    height:2px;
    background:#d8a11d;
}

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

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

.y4Swiper{
    position:relative;
    padding:0 55px;
}

.y4-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:8px;
    padding:25px;
    height:100%;
}

.y4-stars{
    color:#d8a11d;
    font-size:18px;
    margin-bottom:15px;
}

.y4-card p{
    color:#23395d;
    line-height:1.8;
    min-height:90px;
}

.y4-user{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

.y4-user img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.y4-user h6{
    margin:0;
    font-weight:700;
}

.y4-user span{
    font-size:13px;
    color:#777;
}

.y4-prev,
.y4-next{
    width:48px;
    height:48px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    z-index:10;
}

.y4-prev{
    left:0;
}

.y4-next{
    right:0;
}

.y4-prev i,
.y4-next i{
    color:#0d2247;
}

@media(max-width:991px){

    .y4-title{
        font-size:24px;
    }

    .y4Swiper{
        padding:0 10px;
    }

    .y4-prev,
    .y4-next{
        display:none;
    }

}



.y5-blog-section{
    padding:90px 0;
    background:#f8f9fb;
}

.y5-heading{
    text-align:center;
    margin-bottom:50px;
}

.y5-subtitle{
    color:#d8a11d;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
    position:relative;
}

.y5-subtitle:before,
.y5-subtitle:after{
    content:'';
    width:40px;
    height:2px;
    background:#d8a11d;
    position:absolute;
    top:50%;
}

.y5-subtitle:before{
    right:100%;
    margin-right:12px;
}

.y5-subtitle:after{
    left:100%;
    margin-left:12px;
}

.y5-heading h2{
    margin-top:15px;
    font-size:42px;
    font-weight:800;
    color:#0d2247;
}

.y5-blog-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    height:100%;
    border:1px solid #ececec;
    transition:.3s;
}

.y5-blog-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.y5-blog-image{
    height:220px;
    overflow:hidden;
}

.y5-blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.y5-blog-content{
    padding:22px;
}

.y5-blog-content h4{
    font-size:20px;
    font-weight:700;
    color:#0d2247;
    margin-bottom:12px;
}

.y5-blog-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:18px;
}

.y5-blog-btn{
    border:none;
    background:#d8a11d;
    color:#fff;
    padding:10px 24px;
    border-radius:5px;
    font-weight:600;
}

.y5-blog-btn:hover{
    background:#0d2247;
}

.modal-content{
    border:none;
    border-radius:12px;
}

.modal-header{
    border-bottom:1px solid #eee;
}

.modal-header h5{
    font-weight:700;
    color:#0d2247;
}