.site-header {
    position: sticky;
    top: 0;
    z-index: 999;

    background: #0d3b66; /* keep your lighter color */
    padding: 15px 40px;
    color: white;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
body {
    font-family: 'Inter', sans-serif;
}


/* FLEX CONTAINER */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* LOGO LEFT */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    height: 60px;
}

/* NAV RIGHT (DESKTOP) */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #00c2ff;
}

/* HAMBURGER ICON (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2f5fa5;
        display: none;
        text-align: center;
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: block;
    }
}

.property-hero .card {
    transition: 0.3s;
}

.property-hero .card:hover {
    transform: translateY(-5px);
}



.card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.cta-section {
    background-color: #0b1f3a; /* deep finance blue */
}


.pf-footer {
    background-color: #0d3b66; /* your blue */
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: 0.3s;
}

.footer-link:hover {
    color: #cfd8dc;
}

.pf-footer h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.ot-socials .social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.ot-socials .social-icon:hover {
    background: #ffffff;
    color: #0d3b66;
    transform: translateY(-3px);
}


.leader-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .leader-img {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .leader-img {
        height: 450px;
    }
}



.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-primary {
    background: #00c2ff;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    border-radius: 5px;
}

/* SERVICES */
.services {
    padding: 60px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
}

/* WHY US */
.why-us {
    background: #f5f7fa;
    padding: 60px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* CTA */
.cta {
    background: #0b1f3a;
    color: white;
    padding: 60px;
    text-align: center;
}

.btn-secondary {
    background: #00c2ff;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}



.home-banner {
    height: 85vh;
    /*background: url('/images/mortgage-banner.jpg') center/cover no-repeat;
    position: relative;*/
}

/* DARK OVERLAY */
.banner-overlay {
    background: rgba(11, 31, 58, 0.6);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

/* TEXT */
.banner-text {
    color: #fff;
    max-width: 600px;
}

.banner-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* BUTTON */
.btn-main {
    background: #00c2ff;
    padding: 12px 22px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}



/* mortgage page css start here   */





/* HERO HALF */
.mortgage-hero {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: #f5f8fc;
}

.hero-left {
    width: 50%;
}

.hero-right {
    width: 40%;
}

/* CONTACT CARD */
.contact-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-card img {
    width: 100px;
    border-radius: 50%;
}

/* SOCIAL */
.social-links a {
    margin: 5px;
    display: inline-block;
    color: #2f5fa5;
}

/* LEAD FORM */
.lead-section {
    padding: 60px;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

.lead-form input,
.lead-form select {
    padding: 10px;
}

.lead-form button {
    background: #00c2ff;
    color: white;
    padding: 10px;
    border: none;
}

/* AI SECTION */
.ai-section {
    padding: 60px;
    background: #eef4fa;
    text-align: center;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CTA */
.cta {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 60px;
}

/* mortgage page css end here   */


/* chatbot css start here*/

/* FLOAT BUTTON */
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2f5fa5;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* CHAT WINDOW */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

/* HEADER */
.chat-header {
    background: #2f5fa5;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

/* CLOSE */
.close-btn {
    cursor: pointer;
}

/* BODY */
.chat-body {
    height: 250px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}

/* INPUT */
.chat-input {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: none;
}

.chat-input button {
    background: #00c2ff;
    border: none;
    color: white;
    padding: 8px 12px;
}

/* chatbot css end here*/



/* Insurance page css start here  */


/* HERO */
.insurance-hero {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: #f5f8fc;
}

.hero-left {
    width: 50%;
}

.hero-right {
    width: 40%;
}

/* CONTACT CARD */
.contact-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-card img {
    width: 100px;
    border-radius: 50%;
}

/* SOCIAL LINKS */
.social-links a,
.social-buttons a {
    margin: 5px;
    display: inline-block;
    color: #2f5fa5;
    text-decoration: none;
}

/* LEAD FORM */
.lead-section {
    padding: 60px;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

.lead-form input,
.lead-form select {
    padding: 10px;
}

/* AI SECTION */
.ai-section {
    padding: 60px;
    background: #eef4fa;
    text-align: center;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* SOCIAL CONNECT */
.social-connect {
    padding: 60px;
    text-align: center;
}

/* CTA */
.cta {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 60px;
}

/* Insurance page css end here  */


/* social icons css start here */


.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-links a {
    font-size: 20px;
    color: #2f5fa5;
    transition: 0.3s;
}

.social-links a:hover {
    color: #00c2ff;
    transform: scale(1.1);
}

/* social icons css start here */


/*Investment page css start here  */


/* HERO */
.investment-hero {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: #f5f8fc;
}

.hero-left {
    width: 50%;
}

.hero-right {
    width: 40%;
}

/* CONTACT CARD */
.contact-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-card img {
    width: 100px;
    border-radius: 50%;
}

/* SOCIAL */
.social-links a,
.social-buttons a {
    margin: 5px;
    font-size: 20px;
    color: #2f5fa5;
}

/* LEAD FORM */
.lead-section {
    padding: 60px;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

.lead-form input,
.lead-form select {
    padding: 10px;
}

/* AI SECTION */
.ai-section {
    padding: 60px;
    background: #eef4fa;
    text-align: center;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* SOCIAL CONNECT */
.social-connect {
    padding: 60px;
    text-align: center;
}

/* CTA */
.cta {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 60px;
}

/*Investment page css end here  */


/* Properties page css start here */


/* HERO */
.property-hero {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: #f5f8fc;
}

.hero-left { width: 50%; }
.hero-right { width: 40%; }

/* CONTACT CARD */
.contact-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-card img {
    width: 100px;
    border-radius: 50%;
}

/* LEAD FORM */
.lead-section {
    padding: 60px;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

.lead-form input,
.lead-form select {
    padding: 10px;
}

/* AI SECTION */
.ai-section {
    padding: 60px;
    background: #eef4fa;
    text-align: center;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* SOCIAL */
.social-buttons a {
    margin: 5px;
    font-size: 20px;
    color: #2f5fa5;
}

/* CTA */
.cta {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 60px;
}

/* Properties page css start here */


/* blog page css start here   */


.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-card {
    border: none;
    transition: all 0.3s ease;
}

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

/* blog page css end here    */


/* Careers page css start here   */

/* HERO */
.career-hero {
    background: #1c4a73;
    padding: 80px 0;
}

/* BOXES */
.career-box {
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* BENEFITS */
.benefit-box {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    font-weight: 500;
}

/* JOB CARDS */
.job-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Careers page css end here   */



/* News page css start here   */

/* HERO */
.news-hero {
    background: #1c4a73;
    padding: 70px 0;
}

/* NEWS CARD */
.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-body {
    padding: 15px;
}

.news-date {
    font-size: 12px;
    color: #888;
}

.news-body h5 {
    font-size: 16px;
    margin: 10px 0;
}

.read-more {
    font-size: 13px;
    color: #1c4a73;
    text-decoration: none;
}

/* SIDEBAR */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.sidebar-box h5 {
    margin-bottom: 15px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box ul li {
    padding: 6px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

/* News page css end here   */
