/* =========================
   HERO SECTION
========================= */

.tcm-hero-section {
    padding:  50px  0;
    background: #fff;
    
}


/* Small Heading */

.tcm-small-title {
    display: block;
    margin-bottom: 8px;
    color: #006eff;
    font-size: 16px;
    font-weight: 500;
}


/* Main Heading */

.tcm-hero-title {
    margin: 0 0 8px;
    color: #111;
    
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}


/* Description */

.tcm-hero-description {
  
    margin-bottom: 18px;
    color: #222;
    font-size: 16px;
    line-height: 1.5;
}


/* Search */

.tcm-search-box {
    display: flex;
    width: 100%;
    max-width: 520px;
    height: 38px;
    margin-bottom: 15px;
}

.tcm-search-box input {
    height: 42px;
   border: 0.5px solid #DBDBDB;
    border-radius: 6px 0 0 6px;
    
    font-size: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.tcm-search-box input:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.tcm-search-btn {
        width: 84px;
    height: 42px;
    border-radius: 0px 6px 6px 0px;
    margin-left: -1px;
    background: #0868f7;
    color: #fff;
    font-size: 16px;
}

.tcm-search-btn:hover {
    background: #0058d8;
    color: #fff;
}
.report-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 12px;
    padding: 20px 0;
}

.report-tags a {
    background: #eef5ff;
    color: #005bea;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    line-height: 18px;
}

.report-tags a:hover {
    color: #005bea;
}


/* =========================
   HERO IMAGE
========================= */

.tcm-hero-image {
    width: 100%;
    overflow: hidden;
   
    border-radius: 9px;
}

.tcm-hero-image img {
    display: block;
    width: 100%;
    /*height: 230px;*/
    object-fit: cover;
}


/* =========================
   COMPANY LOGOS
========================= */

.tcm-company-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    min-height: 70px;
    margin-top: 30px;
    padding: 5px 10px;
    border: 1px solid #edf0f5;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11%;
    height: 32px;
    padding: 0 10px;
    border-right: 1px solid #e5eaf1;
}

.company-logo:last-child {
    border-right: 0;
}

.company-logo img {
    max-width: 90px;
    max-height: 24px;
    width: auto;
    height: auto;
}

/* =========================
   CORE EXPERTISE SECTION
========================= */

.tcm-expertise-section {
   
    background: #f3f7fd;
    padding: 38px 0 48px;
    overflow: hidden;
}



/* =========================
   SECTION HEADER
========================= */

.tcm-expertise-header {
    margin-bottom: 28px;
}

.tcm-expertise-label {
    display: block;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: #0057ff;
    margin-bottom: 8px;
}

.tcm-expertise-header h2 {
    margin: 0 0 4px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: #080808;
}

.tcm-expertise-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: #222;
}


/* =========================
   EXPERTISE GRID
========================= */

.tcm-expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}


/* =========================
   CARD
========================= */

.tcm-expertise-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 13px 13px 14px;
    min-height: 137px;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* Card Hover */

.tcm-expertise-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.12);
}


/* =========================
   CARD IMAGE
========================= */

.tcm-expertise-card img {
    display: block;
    width: 100%;
  
    object-fit: cover;

    border-radius: 3px;

    margin-bottom: 9px;
}


/* =========================
   CARD TITLE
========================= */

.tcm-expertise-card h3 {
    margin: 0 0 5px;

    font-size: 16px;
    line-height: 1.15;

    /*font-weight: 700;*/

    color: #0047d9;
}


/* =========================
   CARD DESCRIPTION
========================= */

.tcm-expertise-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.35;

    font-weight: 400;

}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .tcm-expertise-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .tcm-expertise-section {
        padding: 35px 0;
    }

    .tcm-expertise-section .container {
        padding: 0 15px;
    }

      .desktop-break {
        display: none;
    }

    .tcm-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tcm-expertise-card {
        padding: 10px;
        min-height: 145px;
    }
   

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .tcm-expertise-grid {
        grid-template-columns: 1fr;
    }

    .tcm-expertise-card {
        min-height: auto;
    }
  
}
/* =========================
   LATEST MARKET REPORTS
========================= */

.tcm-reports-section {
    width: 100%;
    background: #ffffff;
    padding: 50px 0;
}


/* =========================
   REPORT CARD
========================= */

.tcm-report-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 7px;

    padding: 14px 10px 10px;

    min-height: 218px;

    display: flex;
    flex-direction: column;

    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.08);

    transition: all 0.25s ease;
}


/* Hover */

.tcm-report-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);
}


/* =========================
   ICON
========================= */

.tcm-report-icon  {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #087cff,
        #1239c9
    );

    border-radius: 4px;

    margin-bottom: 13px;

}
.tcm-report-icon img {
    width: 20px;
}

/* =========================
   TITLE
========================= */

.tcm-report-card h3 {
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.38;
    font-weight: 500;
    overflow: hidden;
}


/* =========================
   DESCRIPTION
========================= */

.tcm-report-card p {
    margin: 0;

    color: #777777;

    font-size: 15px;
    line-height: 1.35;

    font-weight: 400;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================
   BOTTOM
========================= */

.tcm-report-bottom {
    margin-top: auto;

    padding-top: 10px;

    border-top: 1px solid #eeeeee;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   READ MORE
========================= */

.tcm-report-bottom a {
    text-decoration: none;

    color: #0057e7;

    font-size: 16px;
    font-weight: 500;
}

.tcm-report-bottom a:hover {
    color: #003bb5;
}



.tcm-arrow {
    color: #356de0;
    font-size: 11px;
    white-space: nowrap;
    letter-spacing: -1px;
}




/* =========================
   VALUE CARD
========================= */

.tcm-value-card {
    position: relative;

    min-height: 119px;

    background: #ffffff;

    border-radius: 4px;

    padding: 16px 18px 14px 19px;

    border: 1px solid #edf0f5;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition: all 0.25s ease;
    height:100%;
}


/* Left blue border */

.tcm-value-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    background: #1646d8;

    border-radius: 4px 0 0 4px;
}



/* Hover */

.tcm-value-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.10);
}


/* =========================
   ICON
========================= */

.tcm-value-icon {
    position: absolute;

    top: 17px;
    right: 17px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #a4bdff;

    font-size: 20px;

    line-height: 1;
}


/* =========================
   TITLE
========================= */

.tcm-value-card h3 {
    margin: 0 35px 10px 0;

    color: #003dcc;

    font-size: 16px;

    line-height: 1.25;

    font-weight: 600;
}


/* =========================
   DESCRIPTION
========================= */

.tcm-value-card p {
    margin: 0;

    max-width: 100%;

    color: #333333;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 400;
}


/* =========================
   CARD
========================= */

.tcm-testimonial-card {
    position: relative;

    background: #ffffff;
    height: 100%;

    padding: 17px 9px 60px;

    border-radius: 7px;

    border: 1px solid #e9edf3;

    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;

    transition: all 0.25s ease;
}




/* =========================
   QUOTE
========================= */

.tcm-quote {
    color: #0791f4;

    font-size: 48px;

    line-height: 35px;

    font-family: Georgia, serif;

    font-weight: bold;

}



/* =========================
   TEXT
========================= */

.tcm-testimonial-card p {
    margin: 0;

    color: #111111;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 400;
}


/* =========================
   USER
========================= */

.tcm-user {
    position: absolute;

    left: 10;
    bottom: -1px;
    height: 48px;

    background: #f3f7fd;

    border-radius: 0 9px 0 0;

    display: flex;

    align-items: center;

    padding: 6px;

    box-shadow: 2px -2px 5px rgba(0, 0, 0, 0.05);
}


/* User image */

.tcm-user img {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    object-fit: cover;

    margin-right: 7px;
}


/* User name */

.tcm-user h4 {
    margin: 0 0 2px;

    color: #111111;

    font-size: 16px;

    line-height: 1.1;

}


/* Username */

.tcm-user span {
    display: block;

    color: #999999;

    font-size: 12px;

    line-height: 1;
}



/* =========================
testimonial
========================= */

.tcm-testimonial-image {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tcm-testimonial-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    flex: 0 0 60px;
}

.tcm-testimonial-info {
    display: flex;
    flex-direction: column;
}

.tcm-testimonial-info h4 {
    margin: 0 0 4px;
    color: #111111;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.tcm-testimonial-info span {
    display: block;
    color: #000;
    font-size: 12px;
    line-height: 1.2;
}

.tcm-quote-badge {
    position: absolute;
    left: 45px;
    top: -8px;
}

/* =========================
   QUOTE BADGE
========================= */

.tcm-quote-badge {
    position: absolute;

    top: 2px;
    right: -3px;

    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #078df5;

    color: #ffffff;

    border-radius: 50%;

    font-family: Georgia, serif;

    font-size: 15px;
    font-weight: bold;

    line-height: 1;

    border: 2px solid #ffffff;
}


/* =========================
   CONTENT
========================= */

.tcm-testimonial-content {
    flex: 1;

    padding-top: 1px;
}


/* =========================
   DESCRIPTION
========================= */

.tcm-testimonial-content p {
    margin: 9px 0 ;

    color: #222222;

    font-size: 16px;

    line-height: 1.25;
    min-height: 140px;
    font-weight: 400;
}



.tcm-testimonial-content > span {
    display: block;

    color: #999999;

    font-size: 10px;

    line-height: 1.2;
}

.report-tags form {
    display: inline;
    margin: 0;
    padding: 0;
}

.report-tags .tag-link {
    background: #eef5ff;
    color: #005bea;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    line-height: 18px;
    border: 1px;
}



