/* =========================================
   NOVA ADVISOR SECTION
========================================= */

.nova-advisor-section {
    position: relative;

    width: 100%;
    /* min-height: 520px; */

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

    background-image: url("/images/new-home/Hero-section.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    overflow: hidden;
}


/* =========================================
   CONTENT
========================================= */

.nova-advisor-content {
    position: relative;
    z-index: 2;

    width: 100%;
  

    margin: 0 auto;

    padding: 70px 25px 70px;

    text-align: center;
}


/* =========================================
   TOP LABEL
========================================= */

.nova-advisor-label {
    margin-bottom: 10px;

    font-size: 16px;
    line-height: 1.4;

    font-weight: 500;

    color: #0756c9;
}


/* =========================================
   MAIN HEADING
========================================= */

.nova-advisor-content h1 {
    margin: 0 auto;

    font-size: 32px;
    line-height: 1.18;
    font-weight: 700;
    color: #050505;
}


/* =========================================
   DESCRIPTION
========================================= */

.nova-advisor-description {
    margin: 12px auto 0;


    font-size: 16px;
    line-height: 1.45;

}


/* =========================================
   BUTTONS
========================================= */

.nova-advisor-buttons {
    display: flex;

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

    gap: 9px;

    margin-top: 18px;
}


.nova-btn {
    display: inline-flex;

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

    padding: 10px 20px;

    border-radius: 2px;


    font-size: 16px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.2s ease;
}
.custom-search-box {
    width: 100%;
    max-width: 500px;

    display: flex;
    align-items: center;

    margin: 30px auto;

    background: #F7F9FF;
;

    border: 1px solid #dfe5ef;
    border-radius: 9px;
box-shadow: 0px 4px 4px 0px #0000001F;
border: 1px solid #0222921C;

    overflow: hidden;
}

.custom-search-box input {
    flex: 1;

    height: 45px;

    padding: 0 32px;

    border: none;
    outline: none;

    background: #ffffff;

    font-size: 13px;
    color: #222222;
}

.custom-search-box input::placeholder {
    color: #666666;
}

.custom-search-box button {
    width: 118px;
    height: 45px;

    border: none;
    outline: none;

    background: #0d4dcc;
    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    border-radius: 9px;

    transition: background 0.2s ease;
}

.custom-search-box button:hover {
    background: #0841b2;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .nova-advisor-section {
        min-height: 500px;

        background-position: center;
    }

    .nova-advisor-content {
        padding: 40px 20px;
    }

    .nova-advisor-content h1 {
        font-size: 24px;
    }

    .nova-advisor-description {
        font-size: 10px;
    }

    .desktop-break {
        display: none;
    }

  
}


@media (max-width: 480px) {

    .nova-advisor-section {
        min-height: 540px;
    }

    .nova-advisor-content h1 {
        font-size: 22px;
    }

    .nova-advisor-description {
        font-size: 9px;
    }

    .nova-advisor-buttons {
        margin-top: 16px;
    }

    .nova-testimonial {
        margin-top: 55px;
    }

}

/* =========================================
   MARKET VALUE CARDS
========================================= */

.th-value-section {
    width: 100%;
    padding: 35px 0;
    background: #fff;
}


/* CARD */

.th-value-card {
    height: 100%;

    padding: 15px 12px 13px;

    background: #f5f8fd;

    border: 1px solid #d8e3f5;

    border-radius: 5px;

    box-shadow:
        0 3px 6px rgba(30, 70, 120, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* HOVER */

.th-value-card:hover {
    transform: translateY(-3px);

    border-color: #b9cff2;

    box-shadow:
        0 7px 16px rgba(30, 70, 120, 0.16);
}


/* TITLE */

.th-value-title {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 8px;
}


/* ICON */

.th-value-title img {
    flex-shrink: 0;
    height:22px;
    width:16px;
    color: #0756c9;
}


/* HEADING */

.th-value-title h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
}
/* =========================================
   LATEST MARKET INSIGHTS
========================================= */

.th-insights-section {
    width: 100%;
    padding: 40px 0;
    background: #f2f6fc;
}

/* =========================================
   DESCRIPTION
========================================= */

.th-insights-description {
    padding-left: 20px;
}


.th-insights-description p {
    /* max-width: 700px; */

    margin: 0;

    font-size: 16px;
    line-height: 1.5;

    color: #111;
}


/* =========================================
   CARDS
========================================= */

.th-insights-cards {
    margin-top: 5px;
}


.th-insight-card {
    position: relative;

    height: 100%;
    min-height: 117px;

    padding: 15px 18px 13px;

    background: #f9fbfe;

    border: 1px solid #d9e0e9;

    border-radius: 4px;

    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


/* Hover */

.th-insight-card:hover {
    transform: translateY(-2px);

    border-color: #7aa7f5;

    box-shadow: 0 5px 12px rgba(0, 70, 150, 0.12);
}


/* =========================================
   DATE
========================================= */

.th-insight-date {
    margin-bottom: 8px;

    font-size: 14px;
    line-height: 1.2;

    color: #222;
}


/* =========================================
   CARD TITLE
========================================= */

.th-insight-card h3 {
    margin: 0;


    font-size: 16px;
    line-height: 1.35;

    font-weight: 500;

    color: #080808;
}


/* =========================================
   READ MORE
========================================= */

.th-read-more {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 16px;

    font-size: 14px;
    line-height: 1;

    color: #111;

    text-decoration: none;
}


.th-read-more span {
    font-size: 15px;

    line-height: 8px;

    transition: transform 0.2s ease;
}


.th-read-more:hover {
    color: #0756c9;
}


.th-read-more:hover span {
    transform: translateX(4px);
}

/* =========================================
   TOP SERVICES SECTION
========================================= */

.th-services-section {
    width: 100%;
    padding: 55px 0 65px;
    /* background: #F2F6FC; */
}


/* =========================================
   INTRO
========================================= */

.th-services-intro {
    margin-bottom: 38px;
}




/* =========================================
   SERVICE CARD
========================================= */

.th-service-card {
    position: relative;

    height: 100%;
    min-height: 182px;

    padding: 22px 28px 24px;

    background: #f5f8fd;

    border: 1px solid #edf1f7;

    border-radius: 5px;

    box-shadow:
        0 3px 7px rgba(0, 0, 0, 0.07);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* HOVER */

.th-service-card:hover {
    transform: translateY(-3px);

    border-color: #9abaf5;

    box-shadow:
        0 7px 16px rgba(31, 91, 180, .12);
}


/* =========================================
   ICON
========================================= */

.th-service-icon img {
    width: 35px;
    height: 35px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #edf3fc;
    border: 1px solid #d7e3f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
}


/* =========================================
   CONTENT
========================================= */

.th-service-content h3 {
    margin: 0 0 9px;

    font-size: 16px;
    line-height: 1.25;

    font-weight: 700;
color: #0B4BC8;
}



.para{
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #222;
}

/* =========================================
   OUR VISION
========================================= */

.th-vision-section {
    width: 100%;
    padding: 35px 0 45px;
    background: #fff;
}


/* Main card */

.th-vision-card {
    overflow: hidden;

    min-height: 360px;

    background: #fff;

    border: 1px solid #e9edf3;

    border-radius: 8px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.07);
}


/* =========================================
   IMAGE
========================================= */

.th-vision-image {
    height: 100%;

    padding: 15px;

    background: #f5f8fc;
}


.th-vision-image img {
    display: block;

    width: 100%;
    height: 330px;

    object-fit: cover;

    border-radius: 8px;
}


/* =========================================
   CONTENT
========================================= */

.th-vision-content {
    padding: 35px 25px 30px 10px;
}


/* Label */

.th-vision-label {
    display: inline-flex;

    align-items: center;

   padding: 10px 15px;

    margin-bottom: 17px;

    font-size: 14px;
   

    color: #111;

    background: #f4f7fc;

    border: 1px solid #dce5f4;

    border-radius: 4px;
}


/* Heading */

.th-vision-content h2 {
       margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
    color: #080808;
}


.th-vision-content h2 span {
    color: #0756cf;
}




/* Button */

.th-vision-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;
padding: 10px 15px;

    font-size: 14px;

   

    color: #fff;

    background: #0756cf;

    border: 1px solid #0756cf;

    border-radius: 4px;

   
}


.th-vision-btn:hover {
    color: #fff;

    background: #0647ad;

    border-color: #0647ad;
}

/* =========================================
   FEATURE CARDS
========================================= */
.th-expert-analysis{
 padding: 28px 0 35px;
 background: #F2F6FC;

}





/* Card */

.th-feature-card {
    width: 100%;
    min-height: 280px;

    padding: 10px 10px 16px;

    text-align: center;

    background: #edf3fc;

    border: 1px solid #d7e2f4;

    border-radius: 5px;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.08);

    transition: all 0.25s ease;
}


/* Hover */

.th-feature-card:hover {
    transform: translateY(-3px);

    border-color: #a9c5ef;

    box-shadow:
        0 6px 15px rgba(25, 79, 150, 0.12);
}


/* =========================================
   IMAGE
========================================= */

.th-feature-image {
    width: 100%;
    height: 156px;

    overflow: hidden;

    border-radius: 4px;

    margin-bottom: 18px;
}


.th-feature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 4px;

    transition: transform 0.3s ease;
}


.th-feature-card:hover .th-feature-image img {
    transform: scale(1.02);
}


/* =========================================
   TITLE
========================================= */

.th-feature-card h3 {
    margin: 0 0 12px;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 700;

    color: #0B4BC8;
}



 .why-choose-box {
        position: relative;
        padding: 20px 25px;
        border: 1px solid #d5e2f5;
        border-radius: 5px;
        background-image: url('/new-images/about-us/why-choose.webp');
        background-size: cover;
        background-position: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    }

    .why-choose-title {
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        color: #111;
        margin: 0 0 18px;
    }

    .why-choose-stats {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .why-stat {
        flex: 1;
        text-align: center;
        padding: 0 15px;
    }

    .stat-number {
        font-size: 27px;
        font-weight: 700;
        line-height: 1.2;
        color: #0B4BC8;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 14px;
        font-weight: 500;
        color: #111;
        white-space: nowrap;
    }

    .stat-divider {
        width: 1px !important;
        height: 55px;
        background: #9CB9F2;
        opacity: 0.7;
        flex: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* =========================================
   TEAM TESTIMONIAL IMAGES
========================================= */



/* Image */

.th-team-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.3s ease;
}


/* Optional hover */

.th-team-card:hover .th-team-image {
    transform: scale(1.02);
}


/* =========================================
   CLIENT TESTIMONIALS
========================================= */
.th-team-section{
    background: #F2F6FC;
padding:40px 0;
margin: 40px 0;
}


.th-testimonial-section {
    width: 100%;
    padding: 0px 0 40px;
    background: #fff;
    overflow: hidden;
}


/* =========================================
   LEFT INTRO
========================================= */

.th-testimonial-intro {
    padding-top: 70px;
}


.th-quote-large {
    margin-bottom: 22px;

    font-family: Georgia, serif;

    font-size: 105px;

    line-height: .55;

    font-weight: 700;

    color: #d8d8d8;
}


.th-testimonial-intro h2 {
    margin: 0;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;

    color: #080808;
}




/* =========================================
   RIGHT CONTENT
========================================= */

.th-testimonial-content {
    position: relative;
    margin-top: 15px;
}


.th-testimonial-heading {
    text-align: center;

    margin-bottom: 40px;
}

.th-trusted-heading span {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 500;

    color: #0756cf;
}

.th-insights-heading span {

    display: block;

    margin-bottom: 8px;

    font-size: 18px;

    font-weight: 500;

    color: #0756cf;
}


.th-insights-heading h2 {
    margin: 0;

    font-size: 20px;

    line-height: 1.25;

    font-weight: 700;

    color: #090909;
}

.th-testimonial-card {
    position: relative;
height: 100%;
    padding: 20px;

    background: #f2f6fc;

    border: 1px solid #e8edf5;

    border-radius: 5px;

    box-shadow:
        0 3px 6px rgba(0, 0, 0, .10);
}
.th-testimonial-card:hover {
    
    border: 1px solid #065ce7;
}

/* =========================================
   QUOTE
========================================= */

.th-testimonial-quote {
    margin-bottom: 0;

    font-family: Georgia, serif;

    font-size: 50px;

    line-height: .7;

    font-weight: 700;

    color: #0756cf;
}


/* =========================================
   AUTHOR
========================================= */

.th-testimonial-author {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;

    padding-left: 2px;
}


.th-author-image {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    overflow: hidden;

    border-radius: 50%;
}


.th-author-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.th-testimonial-author span {
    font-size: 10px;

    color: #111;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .th-testimonial-intro {
        padding-top: 30px;
        margin-bottom: 30px;
    }

    .th-testimonial-heading {
        margin-bottom: 25px;
    }

    .th-testimonial-cards {
        flex-wrap: wrap;
    }

    .th-testimonial-card {
        height: auto;
        min-height: 175px;
    }

}




.industry-list {
    display: flex;

    flex-wrap: wrap;

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

    gap: 10px;


    margin: 0 auto;
}


/* Industry Button */

.industry-item {
  
    padding: 12px 20px;

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

    background: #ffffff;

    border: 1px solid #e1e7ef;

    border-radius: 10px;

    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.10);

    color: black;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.2;

    text-align: center;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.2s ease;
}


.industry-item:hover {
    color: #1457c7;

    transform: translateY(-2px);

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);

    text-decoration: none;
}



