/*
Theme Name: Competiscan Market Intelligence
Theme URI: https://competiscan.com
Author: Competiscan
Author URI: https://competiscan.com
Description: Custom WordPress theme for Competiscan Market Intelligence, built with ACF Pro Flexible Content layouts and Contact Form 7. No page builders.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: competiscan
*/

/* =========================================
   BASE RESET & BODY
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #fff;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */
.font-mono-tech { font-family: 'JetBrains Mono', monospace; }
.font-ubuntu   { font-family: 'Ubuntu', sans-serif; }

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container       { max-width: 1280px; margin: 0 auto;}
.container--md   { max-width: 950px;  margin: 0 auto; padding: 0 1.5rem; }
.container--sm   { max-width: 768px;  margin: 0 auto; padding: 0 1.5rem; }
.container--lg   { max-width: 1072px; margin: 0 auto; padding: 0 1.5rem; }

.ai-container .container--md   { max-width: 1190px;  margin: 0 auto; padding: 0 1.5rem; }


/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
    position: fixed;
    /* top: 0; */
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 50;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
}

.site-logo {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #00A4E4;
    transition: opacity .2s;
}
.site-logo:hover { opacity: .8; }

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

/* Primary Nav */
.primary-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: .875rem;
    font-weight: 600;
    color: #334155;    margin-left: 3rem;
}
@media (min-width: 768px) { .primary-nav { display: flex; } }

.primary-nav a:hover { color: rgb(37 99 235); }

/* Dropdown */
.nav-dropdown { position: relative; padding: 2rem 0; }
.nav-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: .25rem;
    cursor: pointer;
    background: none;
    border: none;
    font-size: .875rem;
    font-weight: 600;
    color: #334155;
    transition: color .2s;
}
.nav-dropdown__toggle:hover { color: rgb(37 99 235); }
.nav-dropdown__toggle svg { width: 1rem; height: 1rem; }

.nav-dropdown__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: -1rem;
    min-width: 18rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    border-radius: .5rem;
    padding: .5rem 0;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown__menu { display: block; }

.nav-dropdown__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    color: #334155;
    transition: background .2s, color .2s;
}
.nav-dropdown__menu a:hover { background: #f8fafc; color: rgb(37 99 235); }

.badge-new {
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem; margin-left: auto;
}
.header-login {
    display: none;
    font-size: .875rem;
    font-weight: 600;
    color: #475569;
    transition: color .2s;
}
.header-login:hover { color: rgb(37 99 235); }
@media (min-width: 768px) { .header-login { display: block; } }

/* Mobile hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #334155; border-radius: 2px; }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: .5rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
    display: block;
    padding: .75rem 0;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}
.mobile-menu a:hover { color: rgb(37 99 235); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding:.830rem 1.5rem;
    border-radius: .375rem;
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background .2s, opacity .2s;
    line-height: 1;
}
.btn--primary   { background: rgb(37 99 235); color: #fff; }
.btn--primary:hover   { background: #1d4ed8; }
.btn--dark      { background: #0f172a; color: #fff; }
.btn--dark:hover { background: #1e293b; }
.btn--lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn--full { display: block; width: 100%; text-align: center; padding: 1rem; }

/* =========================================
   MAIN CONTENT (offset for fixed header)
   ========================================= */
.site-main { padding-top: 80px; }

/* =========================================
   FLEXIBLE CONTENT SECTIONS — SHARED
   ========================================= */
.fc-section { width: 100%; }

/* =========================================
   LAYOUT: cs_hero
   ========================================= */
.cs-hero {
    padding: 5rem 1.5rem;
    background: #fff;
    text-align: center;
}
@media(min-width:768px){ .cs-hero { padding: 8rem 1.5rem; } }

.cs-hero__badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-size: .75rem;
    font-weight: 700;
    padding: .375rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.cs-hero__inner { max-width: 1028px; margin: 0 auto; }
.cs-hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -.025em;
    line-height: 1;
    margin-bottom: 2rem;
}
.cs-hero__desc {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   LAYOUT: cs_dark_two_col
   ========================================= */
.cs-dark-two-col {
    padding: 4rem 1.5rem;
    background: #0f172a;
    color: #fff;
}
.cs-dark-two-col__grid {
    display: grid;
    gap: 3rem;
    text-align: center;
}
@media(min-width:768px){
    .cs-dark-two-col__grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}
.cs-dark-two-col__label {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #60a5fa;
}
.cs-dark-two-col__text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
}

/* =========================================
   LAYOUT: cs_stats_grid
   ========================================= */
.cs-stats-grid {
    padding: 5rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.cs-stats-grid__headline {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    /* max-width: 56rem; */
    margin-left: auto;
    margin-right: auto;
    color: #0F172A;
}
.cs-stats-grid__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: .5;
    filter: grayscale(1);
}
.cs-stats-grid__logos img { height: 36px; width: auto; }
.cs-stats-grid__logos span { font-size: 1.25rem; font-weight: 900; letter-spacing: .1em; }
.cs-stats-grid__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}
@media(min-width:768px){
    .cs-stats-grid__items { grid-template-columns: repeat(3, 1fr); }
}
.cs-stat-card {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: .75rem;
    text-align: center;
}
.cs-stat-card__number {
    font-size: 2.25rem;
    font-weight: 900;
    color: rgb(37 99 235);
    margin-bottom: .5rem;
}
.cs-stat-card__label {
    font-size: .875rem;
    font-weight: 600;
    color: #475569;
}

/* =========================================
   LAYOUT: cs_testimonials
   ========================================= */
.cs-testimonials {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}
.cs-testimonials__title {
    font-size: 1.875rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #0F172A;
}
.cs-testimonials__grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}
@media(min-width:768px){ .cs-testimonials__grid { grid-template-columns: 1fr 1fr; } }
.cs-testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: .75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    border: 1px solid #e2e8f0;
}
.cs-testimonial-card__quote {
    color: #334155;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.cs-testimonial-card__attr {
    font-weight: 700;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgb(37 99 235);
}

/* =========================================
   LAYOUT: cs_solution_detail
   ========================================= */
.cs-solution-detail {
    padding: 5rem 1.5rem;
    background: #fff;
}
.cs-solution-detail__eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: rgb(37 99 235);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.cs-solution-detail__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: #0F172A;
    line-height: 50px;
}
.cs-solution-detail__desc {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 3rem;
}
.cs-solution-detail__caps-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0F172A;
}
.cs-solution-detail__caps-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.cs-solution-cap {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: .5rem;
    border: 1px solid #f1f5f9;
}
.cs-solution-cap__name {
    font-size: 1.125rem;
    font-weight: 700;
    display: block;
    margin-bottom: 18px;
    color: #0F172A;
}
.cs-solution-cap__desc { color: #475569; line-height: 1.6; }

.cs-solution-grid .cs-solution-detail__caps-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 3-col metadata grid */
.cs-solution-meta {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}
@media(min-width:768px){ .cs-solution-meta { grid-template-columns: repeat(3, 1fr); } }
.cs-solution-meta__group h3 {
    font-weight: 700;
    color: rgb(37 99 235);
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
}
.cs-solution-meta__group p { font-size: .875rem; color: #475569; line-height: 1.6; }

/* Notice box */
.cs-notice {
    border-left: 4px solid rgb(37 99 235);
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 0 .5rem .5rem 0;
    margin-bottom: 4rem;
}
.cs-notice strong { color: #1e40af; }
.cs-notice span { color: #1e3a8a; }

/* =========================================
   LAYOUT: cs_industries_hub
   ========================================= */
.cs-industries-hub {
    padding: 5rem 1.5rem;
    background: #fff;
}
.cs-industries-hub__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0F172A;
}
.cs-industries-hub__desc {
    font-size: 1.25rem;
    color: #475569;
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 4rem;
    line-height: 30px;
}
.cs-industries-hub__h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.cs-industries-hub__grid {
    display: grid;
    gap: 1.5rem 3rem;
    margin-bottom: 4rem;
}
@media(min-width:768px){ .cs-industries-hub__grid { grid-template-columns: 1fr 1fr; } }
.cs-industry-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    font-size: 1.125rem;
    color: #1e293b;
    line-height: 32px;
}

/* =========================================
   LAYOUT: cs_insights_hub
   ========================================= */
.cs-insights-hub {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}
.cs-insights-hub__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: #0F172A;
}
.cs-insights-hub__grid {
    display: grid;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto 5rem;
}
@media(min-width:1024px){ .cs-insights-hub__grid { grid-template-columns: 1fr 1fr; } }
.cs-insights-hub__col-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
}
.cs-insights-hub__col-title .accent { width: 1rem; height: 1rem; background: rgb(37 99 235); border-radius: .125rem; flex-shrink: 0; }
.cs-articles-list { display: flex; flex-direction: column; gap: 1rem; }
.cs-article-item {
    background: #fff;
    padding: 1.25rem;
    border-radius: .5rem;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: box-shadow .2s;display: flex;
}
.cs-article-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }

.cs-webinar-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: .5rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}
.cs-webinar-box__label {
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}
.cs-webinar-item {
    border-left: 4px solid rgb(37 99 235);
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.cs-webinar-item__date { font-weight: 700; color: rgb(37 99 235); display: block; }
.cs-webinar-item__title { font-weight: 600; line-height: 24px; }

/* Newsletter CTA */
.cs-newsletter-cta {
    background: rgb(37 99 235);
    border-radius: 1rem;
    padding: 36px;
    text-align: center;
    color: #fff;
    max-width: 48rem;
    margin: 0 auto;
}
.cs-newsletter-cta__title { font-size: 1.875rem; font-weight: 700; margin-bottom: .5rem; }
.cs-newsletter-cta__desc { margin-bottom: 2rem; color: #bfdbfe; }
.cs-newsletter-cta__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media(min-width:768px){ .cs-newsletter-cta__form { flex-direction: row; } }
.cs-newsletter-cta__form input {
    flex: 1;
    padding: .75rem 1rem;
    border-radius: .375rem;
    border: none;
    color: #1e293b;
    font-size: .9375rem;
}

/* =========================================
   LAYOUT: cs_about_page
   ========================================= */
.cs-about-page {
    padding: 5rem 1.5rem;
    background: #fff;
}
.cs-about-page__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #0F172A;
    line-height: 48px;
}
.cs-about-page__grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
}
@media(min-width:768px){ .cs-about-page__grid { grid-template-columns: 1fr 1fr; } }
.cs-about-page__col-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(37 99 235);
    margin-bottom: 1rem;
}
.cs-about-page__col-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}
.cs-about-page__logos {
    text-align: center;
    margin-bottom: 5rem;
}
.cs-about-page__logos h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.cs-about-page__logos .logos-inner {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: .4;
}
.cs-about-page__logos img { height: 36px; width: auto; }
.cs-about-page__team {
    margin-bottom: 5rem;
    text-align: center;
}
.cs-about-page__team h3 { font-size: 1.875rem; font-weight: 700; margin-bottom: 2.5rem; }
.cs-team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
  
.cs-team-card { text-align: center; }
.cs-team-card img {
    /* width: 120px; */
    /* height: 120px; */
    /* border-radius: 50%; */
    object-fit: cover;
    margin: 0 auto 1rem;
    height: auto;
    width: 100%;
}

.cs-team-card__name {
    font-weight: 700;
    margin-bottom: .25rem;
    text-transform: uppercase;
    text-align: justify;
    font-size: 15px;
    color: #2d6374;
    letter-spacing: 0px;
}
.cs-team-card__title {
    font-size: .875rem;
    color: #999999;
    margin-bottom: .5rem;
    text-align: justify;
    font-weight: 300;
}

.cs-team-card__link { font-size: .875rem; color: rgb(37 99 235); font-weight: 600; }

/* =========================================
   LAYOUT: cs_careers_page
   ========================================= */
.cs-careers-page {
    padding: 5rem 1.5rem;
    background: #f8fafc;
}
.cs-careers-page__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #0F172A;
}
.cs-why-join {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}
.cs-why-join__title { font-size: 1.5rem; font-weight: 700; color: rgb(37 99 235); margin-bottom: 1.5rem; }
.cs-why-join__text { font-size: 1.125rem; color: #475569; line-height: 1.7; margin-bottom: 1.5rem; }
.cs-why-join__note {
    background: #eff6ff;
    padding: 1rem;
    border-radius: .5rem;
    font-size: 1.125rem;
    color: #475569;
    font-weight: 600;
    line-height: 26px;
}
.cs-careers-section {
    margin-top: 3rem;
}
.openroles{
    background: #fff;
    border-radius: 1rem;
    border: 3px dashed #94a3b891; /* changed here */
    padding: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 26px;
}

.employee-textimonial{
    background: #fff;
    border-radius: 1rem;
    border: 3px dashed #94a3b891; /* changed here */
    padding: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 26px;

}
.cs-testimonials-placeholder{
    color: #94a3b8ed;
}

.cs-careers-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: #0F172A;}
.cs-careers-page__cta-wrap { text-align: center; margin-top: 4rem; }
.cs-careers-page__cta-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; color: #0F172A; }

/* =========================================
   LAYOUT: cs_faq_accordion
   ========================================= */
.cs-faq {
    padding: 5rem 1.5rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}
.cs-faq__title {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: .75rem;
    color: #0F172A;
}
.cs-faq__desc {
    text-align: center;
    color: #475569;
    margin-bottom: 3rem;
}
.cs-faq__list { display: flex; flex-direction: column; gap: 0.5rem; max-width: 56rem; margin: 0 auto; }
.cs-faq-item {
    background: #f8fafc;
    padding-left: 1.5rem;padding-right: 1.5rem;
    border-radius: .5rem;
    cursor: pointer;
}
.cs-faq-item__q {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0rem;
    color:rgb(30 58 138);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    background: transparent;
    width: 100%; 
    padding: 1rem 0; /* 👈 equal top-bottom spacing */
}


.cs-faq-item__q svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform .3s; color: rgb(37 99 235); }
.cs-faq-item.is-open .cs-faq-item__q svg { transform: rotate(180deg); }
.cs-faq-item__a {
    color:rgb(51 65 85);
    line-height: 1.7;
    display: block;
    max-height: 0;
    transition: max-height .4s ease;
}
.cs-faq-item.is-open .cs-faq-item__a { max-height: 500px; }
li.cs-faq-item.is-open {
    padding-bottom: 1.5rem;
}


/* Force FAQ answers visible and disable collapse transitions */
/* .cs-faq__list .cs-faq-item__a {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
} */

/* Make question non-interactive in appearance */
.cs-faq__list .cs-faq-item__q {

    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #1E3a8a;
}

/* Decorative chevron - hide by default; remove this rule if you want it visible */
.cs-faq-item__icon {
    width: 1.1rem;
    height: 1.1rem;
    /* display: none; */
}

/* Optional: spacing and card look */
.cs-faq__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cs-faq-item {
    background: #f6fbff;
    border-radius: 8px;
    padding: 0px 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 0 rgba(15, 41, 64, 0.04);
}

.cs-faq-item__a img {
    max-width: 100%;
    height: auto;
    display: block;
}
.cs-faq-item__q {
    cursor: pointer;
}

.cs-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    margin-top: 0.75rem;
    color: #334155;
    line-height: 1.6;

}

.cs-faq-item.is-open .cs-faq-item__a {
    max-height: 500px;
}

.cs-faq-item.is-open {
    padding-bottom: 1.5rem;
}

.cs-faq-item__icon {
    display: block;
}

.cs-faq-item.is-open .cs-faq-item__q svg {
    transform: rotate(180deg);
}



/* =========================================
   LAYOUT: cs_ai_decision_engine
   ========================================= */
.cs-ai-section {
    padding-top: 5rem;
    background: #fff;
}
.cs-ai-section__header { max-width: 56rem; margin: 0 auto 4rem; text-align: center; }
.cs-ai-section__eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: rgb(37 99 235);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.cs-ai-section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: #0F172A;
    line-height: 54px;
}
.cs-ai-section__desc {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
}
.cs-ai-engine {
    background: #020617;
    border-radius: 1rem;
    border: 1px solid #1e293b;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 550px;
    /* margin-bottom: 5rem; */
    font-family: 'JetBrains Mono', monospace;
}
@media(min-width:768px){ .cs-ai-engine { flex-direction: row; max-width: 1148px;
    margin: auto; } }
.cs-ai-engine__sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #1e293b;
    background: #0a0f1e;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
@media(min-width:768px){
    .cs-ai-engine__sidebar { width: 220px; border-right: 1px solid #1e293b; border-bottom: none; }
}
.cs-ai-engine__sidebar-label {
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #475569;
    font-weight: 700;
    margin-bottom: .5rem;
}
.study-btn {
    text-align: left;
    padding: 1rem;
    border-radius: .375rem;
    border: 1px solid transparent;
    background: none;
    color: #94a3b8;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: .8125rem;
    width: 100%;
    transition: background .2s, color .2s;
}
.study-btn:hover { background: #1e293b; }
.study-btn.is-active { background: rgba(37,99,235,.25); color: #60a5fa; border-color: rgba(37,99,235,.4); }
.study-btn__title { font-weight: 700; display: block; margin-bottom: .25rem; }
.study-btn__sub { font-size: .6875rem; color: #64748b; }
.study-btn.is-active .study-btn__sub { color: #93c5fd; }

.cs-ai-engine__content { flex: 1; padding: 2rem; color: #e2e8f0; overflow-y: auto; }
.study-view { display: none; }
.study-view.is-active { display: block; animation: fadeIn .4s ease-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.study-view__badge {
    font-size: .75rem;
    font-weight: 700;
    background: rgba(37,99,235,.3);
    color: #93c5fd;
    padding: .25rem .75rem;
    border-radius: .25rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.study-view__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}
.study-view__desc {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: .9375rem;
}
.study-view__checks { display: flex; flex-direction: column; gap: .75rem; }
.study-view__check {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    color: #cbd5e1;
}
.study-view__check::before {
    content: '✓';
    color: #34d399;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem;
}

/* =========================================
   LAYOUT: cs_form_dark
   ========================================= */
   .cs-form-dark {
    background: #0f172a;
    padding: 2.5rem;
    border-radius: 1rem;
    color: #fff;
    margin-top: 3rem;
    max-width: 890px;
    margin: auto;
}
.cs-form-dark__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-form .cs-form-dark__title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Contact Form 7 overrides inside dark form */
.cs-form-dark .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cs-form-dark .wpcf7-form .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.cs-form-dark .wpcf7-form input[type="text"],
.cs-form-dark .wpcf7-form input[type="email"],
.cs-form-dark .wpcf7-form input[type="tel"],
.cs-form-dark .wpcf7-form textarea,
.cs-form-dark .wpcf7-form select {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .375rem;
    border: none;
    color: #1e293b;
    font-size: .9375rem;
    font-family: 'Inter', sans-serif;
}
.cs-form-dark .wpcf7-form input[type="submit"] {
    width: 100%;
    background: rgb(37 99 235);
    color: #fff;
    font-weight: 700;
    padding: 1rem;
    border-radius: .375rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
    font-family: 'Inter', sans-serif;
}
.cs-form-dark .wpcf7-form input[type="submit"]:hover { background: #1d4ed8; }
.cs-form-dark .wpcf7-form .wpcf7-checkbox label { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: #e2e8f0; }
.cs-form-dark .checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* =========================================
   LAYOUT: cs_form_blue
   ========================================= */
.cs-form-blue {
    background: rgb(37 99 235);
    padding: 2.5rem;
    border-radius: 1rem;
    color: #fff;
    max-width: 42rem;
    margin: 0 auto;
}
.cs-form-blue__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.cs-form-blue .wpcf7-form { display: flex; flex-direction: column; gap: 1rem; }
.cs-form-blue .wpcf7-form .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cs-form-blue .wpcf7-form input[type="text"],
.cs-form-blue .wpcf7-form input[type="email"],
.cs-form-blue .wpcf7-form input[type="tel"],
.cs-form-blue .wpcf7-form textarea {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .375rem;
    border: none;
    color: #1e293b;
    font-size: .9375rem;
    font-family: 'Inter', sans-serif;
}
.cs-form-blue .wpcf7-form input[type="submit"] {
    width: 100%;
    background: #0f172a;
    color: #fff;
    font-weight: 700;
    padding: 1rem;
    border-radius: .375rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
}
.cs-form-blue .wpcf7-form input[type="submit"]:hover { background: #1e293b; }

/* =========================================
   LAYOUT: cs_research_types
   ========================================= */
.cs-research-types {
    background: #f8fafc;
    padding: 2rem;
    border-radius: .75rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 4rem;
}
.cs-research-types__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: #0f172a; }
.cs-research-types__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    color: #334155;
}
.cs-research-types__item { display: flex; align-items: center; gap: .5rem; }
.cs-research-types__dot { width: .5rem; height: .5rem; background: rgb(37 99 235); border-radius: 50%; flex-shrink: 0; }

/* =========================================
   LAYOUT: cs_custom_text_block
   ========================================= */
.cs-text-block {
    padding: 4rem 1.5rem;
}
.cs-text-block--white { background: #fff; }
.cs-text-block--slate { background: #f8fafc; }
.cs-text-block--dark  { background: #0f172a; color: #fff; }
.cs-text-block__inner { max-width: 56rem; margin: 0 auto; }
.cs-text-block__title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1.5rem; }
.cs-text-block__content { font-size: 1.125rem; line-height: 1.8; color: #475569; }
.cs-text-block--dark .cs-text-block__content { color: #94a3b8; }

/* =========================================
   LAYOUT: cs_logo_bar
   ========================================= */
.cs-logo-bar {
    padding: 3rem 1.5rem;
    background: #fff;
}
.cs-logo-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: .5;
    filter: grayscale(1);
    max-width: 64rem;
    margin: 0 auto;
}
.cs-logo-bar__inner img { height: 36px; width: auto; }

/* =========================================
   LAYOUT: cs_team_grid
   ========================================= */
.cs-team-section { padding: 4rem 1.5rem; background: #fff; }
.cs-team-section__title { font-size: 1.875rem; font-weight: 700; text-align: center; margin-bottom: 2.5rem; }
.cs-team-section__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    max-width: 64rem;
    margin: 0 auto;
}

/* =========================================
   GLOBAL CONTACT MODAL
   ========================================= */
.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.8);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.contact-modal.is-open { display: flex; }
.contact-modal__inner {
    background: #fff;
    border-radius: 1rem;
    max-width: 32rem;
    width: 100%;
    padding: 2rem;
    position: relative;
}
.contact-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    transition: color .2s;
}
.contact-modal__close:hover { color: #0f172a; }
.contact-modal__close svg { width: 1.5rem; height: 1.5rem; }
.contact-modal__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: #0f172a; }
.contact-modal .wpcf7-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-modal .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-modal .wpcf7-form input[type="text"],
.contact-modal .wpcf7-form input[type="email"],
.contact-modal .wpcf7-form input[type="tel"] {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: .375rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: .9375rem;
    font-family: 'Inter', sans-serif;
}
.contact-modal .wpcf7-form input[type="submit"] {
    width: 100%;
    background: rgb(37 99 235);
    color: #fff;
    font-weight: 700;
    padding: 1rem;
    border-radius: .375rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
}
.contact-modal .wpcf7-form input[type="submit"]:hover { background: #1d4ed8; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #0f172a;
    color: #fff;
    padding: 3rem 1.5rem;
}
.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1e293b;
}
@media(min-width:768px){
    .site-footer__inner { flex-direction: row; justify-content: space-between; }
}
.site-footer__brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -.025em;
    color: #60a5fa;
    margin-bottom: .5rem;
}
.site-footer__tagline { color: #94a3bb; font-style: italic; font-size: 16px; }
.site-footer__nav {
    display: flex;
    gap: 2rem;
    font-size: .875rem;
    font-weight: 600;
}
.site-footer__nav-group { display: flex; flex-direction: column; gap: .25rem; }
.site-footer__nav-group-label {
    color: #64748b;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}
.site-footer__nav-group a { color: #e2e8f0; transition: color .2s; display: block; margin-bottom: .25rem; }
.site-footer__nav-group a:hover { color: #60a5fa; }
.site-footer__copy {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    font-size: .875rem;
    color: #64748b;
    padding-top: 20px;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.radar-spin { animation: spin 20s linear infinite; transform-origin: center; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.pulse-slow { animation: pulseSlow 3s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes pulseSlow { 0%,100%{opacity:1;} 50%{opacity:.5;} }

/* =========================================
   RESPONSIVE UTILITIES
   ========================================= */
@media(max-width:767px){
    .hide-mobile { display: none !important; }
    .cs-form-dark .two-col,
    .cs-form-blue .two-col,
    .contact-modal .two-col { grid-template-columns: 1fr; }
}

/*My CSS*/

.wpcf7 form .wpcf7-response-output {
    border: 0;
    text-align: center;
    margin: 0;
    padding: 0;
}
/* Form container */
.learn-more .cs-newsletter-cta .wpcf7-form {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;font-size:16px
}
.learn-more .wpcf7-response-output {
    width: 100%;
    flex-basis: 100%;
}
.learn-more .wpcf7-form {
    display: flex;
    flex-wrap: wrap; 
    align-items: flex-start;
    gap: 15px;
}

/* Input fields */
.cs-newsletter-cta  .wpcf7-form-control.wpcf7-text,
.cs-newsletter-cta .wpcf7-form-control.wpcf7-email {
  width: 100%;
  max-width: 250px;
  padding: 16px 15px;
  border: none;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  outline: none;
}

/* Placeholder */
.cs-newsletter-cta .wpcf7-form-control::placeholder {
  color: #666;
}

/* Submit button */
.cs-newsletter-cta .wpcf7-submit {
  background: rgb(15 23 42);
  color: #fff;
  border: none;
  padding: 16px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s; font-size:16px
}

/* Hover effect */
.cs-newsletter-cta .wpcf7-submit:hover {
  background: #182644;
}

/* Remove default CF7 spacing */
.cs-newsletter-cta .wpcf7-form-control-wrap {
  display: inline-block;
}

/* Fix spinner */
.cs-newsletter-cta .wpcf7-spinner {
  display: inline-block !important;
  margin: 0 0 0 8px;
  vertical-align: middle;
}
/* Responsive */
@media (max-width: 768px) {
  .cs-newsletter-cta .wpcf7-form {
    flex-direction: column;
    align-items: stretch;
  }

  .cs-newsletter-cta .wpcf7-form-control.wpcf7-text,
  .cs-newsletter-cta .wpcf7-form-control.wpcf7-email {
    max-width: 100%;
  }

  .cs-newsletter-cta  .wpcf7-submit {
    width: 100%;
  }
}

/* grey heading */

.grey-heading{
    color: #64748b;
}

.teams-heading{
    color: #0F172A;
}


.cs-team-placeholder {
    background: #f8fafc;
    border-radius: 1rem;
    border: 3px dashed #94a3b891; /* changed here */
    padding: 3.5rem;
    margin-bottom: 2rem;
}

p.cs-team-card__bio {
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    margin-top: 16px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 50%;
    color: grey;
    text-align: center;
    transition: all 0.3s ease;
}

.logo:hover{
    border: 1px solid #00a4e4;
    color: #00A4E4;
}
.cs-linkedin-icon {
    color: #9e9e9e; /* grey */
}

.cs-linkedin-icon:hover {
    color: #0A66C2; /* LinkedIn blue */
}
.form-row {
    display: flex;
    gap: 15px;
}

.form-col {
    width: 50%;
}

.cs-form-dark .wpcf7-form input[type="text"],
 .cs-form-dark .wpcf7-form input[type="email"], 
 .cs-form-dark .wpcf7-form input[type="tel"], 
 .cs-form-dark .wpcf7-form textarea, .cs-form-dark .wpcf7-form select {
    width: 100%;
    border-radius: .375rem;
    border: none;
    color: #1e293b;
    font-size: .9375rem;
    font-family: 'Inter', sans-serif;
    padding: 15px;
}
span.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    color: #ff0000;
    font-size: 1em;
    font-weight: normal;
    display: block;
    margin-top: 10px !important;
    margin-bottom: 10px;
}

.wpcf7-response-output{
    color: #ff0000;
    font-size: 1em;
    font-weight: normal;
    display: block;
    margin-top: 10px !important;

}


@media(max-width: 600px){


    .cs-hero__title{
        font-size: 48px !important;
        line-height: 1.25;
    }
 

    .cs-stats-grid__headline {
     line-height: 32px;
    }

    .cs-stats-grid__items{
        grid-template-columns: 1fr;
    }

    .container--md{
        padding: 0px;
    }

    .cs-faq__desc{
        line-height: 26px;
    }

    .cs-faq__list .cs-faq-item__q{
        line-height: 26px;
        text-align: left;
    }

    .cs-team-grid {
        grid-template-columns: 1fr;
      }

      .cs-solution-detail__title{
          line-height: 38px;
          font-size: 36px !important;
      }

      .cs-ai-section__title{
          font-size: 36px !important;
          line-height: 40px;
      }


.cs-ai-section {
    background: #fff;
    padding: 5rem 1.5rem;
}  

.cs-solution-grid .cs-solution-detail__caps-list{
    grid-template-columns: 1fr;
}

.cs-solution-detail {
    padding: 5rem 1.5rem !important;
    background: #fff;
}


.ai-container .container--md {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0px;
} 

.cs-notice {

    line-height: 24px;
}

.cs-research-types__grid{
    grid-template-columns: 1fr;
}
.cs-research-types__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 32px;
}

.cs-industries-hub__title{
    font-size: 36px !important;
    line-height: 40px !important;
}

.cs-insights-hub__title, .cs-careers-page__title{
font-size: 36px !important;
line-height: 42px !important;
}
.container--lg {
    max-width: 1072px;
    margin: 0 auto;
    padding: 0px;
}

.cs-about-page__title{
    font-size: 36px !important;
    line-height: 40px !important;
}
.cs-team-grid {
    grid-template-columns: 1fr !important;
}

.cs-why-join {
    background: #fff;
    padding: 1.5rem;
}

.form-row {
    flex-direction: column;
}
.form-col {
    width: 100%;
}
.cs-form-dark {
    background: #0f172a;
    padding: 26px;
 
}
.about-form .cs-form-dark__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cs-stats-grid__headline::after {
    content: "[LOGO 1] \00a0\00a0\00a0 [LOGO 2] \00a0\00a0\00a0 [LOGO 3] \00a0\00a0\00a0 [LOGO 4]";
    display: block;
    margin-top: 2.5rem !important;
    font-size: 21px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a5adb9;
    margin-bottom: 2.25rem !important;
}
.form-col-checkbox{
	width: 100%;
}
	.cs-form-dark .checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
}

.cs-role-card {
    /* border: 1px solid; */
    background: #fff;
    border-radius: 1rem;
    border: 3px dashed #94a3b891;
    padding: 24px !important;
    margin-bottom: 2rem;
    line-height: 26px;
}

h3.mobile-title {
    color: #0f172a !important;
    font-size: 25px !important;
}

}

@media (max-width: 1024px) {
    .cs-testimonials__title{
        padding: 0px 8px !important;
        line-height: 38px;
    }

    .cs-hero__title{
        font-size: 72px;
    }

    .cs-stat-card__label {
    line-height: 20px;
    }

    .container--md{
        padding: 0px;
    }
    .cs-team-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cs-solution-meta__group h3 {
        font-size: 16px !important;
       }

       .cs-solution-detail__title{
        font-size: 48px;
    }

    .cs-faq__list{
        margin: auto;
    }

    .ai-container .container--md {
        max-width: 1190px;
        margin: 0 auto;
        padding: 0px;
    }
    .cs-solution-detail {
        padding: 5rem 1.5rem;
        background: #fff;
    }
    .cs-ai-section {
        background: #fff;
        padding: 5rem 1.5rem;
    }

   .cs-industries-hub__title{
       font-size: 48px;
       line-height: 50px;
   }
    
    .cs-ai-section__title, .cs-careers-page__title{
        font-size: 48px;
    }

    .cs-ai-section__eyebrow{
        font-size: 14px;
    }

    .cs-insights-hub__title, .cs-about-page__title{
        font-size: 48px;
        line-height: 48px;
    }
    .container--lg{
        padding: 0px;
    }
        /* Hide desktop nav */
        .primary-nav {
            display: none;
        }
    
        /* Show hamburger */
        .hamburger {
            display: flex;
        }
    
        /* Keep header actions (Contact button visible) */
        .header-actions {
            display: flex;
            margin-left: auto;
        }
    
        /* Optional: thoda spacing adjust */
        .site-header__inner {
            padding: 0 1rem;
        }
    
        /* Optional: button size thoda compact */
        .btn {
            padding: 0.6rem 1rem;
            font-size: 0.8rem;
        }
    
}

.mobile-menu .nav-dropdown {
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid #dedede52;
}

/* FIXED */
.mobile-menu .nav-dropdown__menu {
    display: none;
    position: static; /* ✅ important */
    width: 100%;
    background: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0.5rem 0 0 1rem;
}

/* When open */
.mobile-menu .nav-dropdown.open .nav-dropdown__menu {
    display: block;
}


.mobile-menu .nav-dropdown__menu a {
    display: block;
    padding: 16px 0;
}



.wpcf7 form.sent .wpcf7-response-output {
    border-color: #05b915;
    color: #ffffff;
    background-color: green !important;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
}


.cs-stats-grid__headline {
    position: relative;
    text-align: center;
}

/* .cs-stats-grid__headline::after {
    content: "[LOGO 1] \00a0\00a0\00a0 [LOGO 2] \00a0\00a0\00a0 [LOGO 3] \00a0\00a0\00a0 [LOGO 4]";
    display: block;
    margin-top: 2.5rem;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7e848d;
    margin-bottom: 4.25rem !important;
    font-weight: 700;
    letter-spacing: 2px;
}


.cs-about-page__logos::after {
    content: "[ADD LOGOS]";
    margin-top: 1.5rem;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7e848d;
    font-weight: 700;
} */

/* hide section for temproray (logos) */
.cs-about-page__logos {
    text-align: center;
    margin-bottom: 5rem;
    display: none;
}

.cs-about-page__testimonials {
    padding-top: 40px;
}


span.logo-text-footer {
    color: #3b82f6;
}

/* new footer changes */

/* ===== FOOTER LAYOUT ===== */
.site-footer__inner {
    display: grid;
    grid-template-columns: 3.2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* ===== COLUMN ===== */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* ===== HEADINGS ===== */
.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #8fa3bf;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* ===== LINKS ===== */
.footer-col a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #60a5fa;
}

/* ===== BRAND COLUMN ===== */
.logo-text-footers {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4da3ff;
    display: block;
    margin-bottom: 0.5rem;
}

.site-footer__tagline {
    color: #8fa3bf;
    margin-bottom: 1rem;
}

/* ===== SOCIAL ICONS ===== */
.footer-socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: #1a2b44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials i {
    color: #8fa3bf;
    font-size: 14px;
}

.footer-socials a:hover {
    background: #60a5fa;
    transform: translateY(-3px);
}

.footer-socials a:hover i {
    color: #ffffff;
}

/* Contact row layout */
.footer-col-details p {
    display: flex;
    align-items: flex-start; /* FIXED */
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    margin-top: 10px;
}

/* Circle icon same as social */
.contact-icon {
    width: 28px;
    height: 28px;
    background: #1a2b44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px; /* thoda adjust for perfect alignment */

}

/* Smaller icon */
.contact-icon i {
    font-size: 11px;
    color: #8fa3bf;
}

/* ✅ Hover only on that specific row */
.footer-col-details p:hover {
    color: #60a5fa;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
    }
}


.checkbox-grid {
    display: flex;
    gap: 40px;
    margin-top: 15px;
}

.checkbox-grid .form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.checkbox-grid .wpcf7-list-item {
    display: block;
    margin: 0 0 14px 0;
}

.checkbox-grid .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-grid input[type="checkbox"] {
    margin-top: 3px;
}

.form-col-checkbox{
	width: 100%;
}
/* career page */

.first-para {
    font-size: 14px;
    line-height: 24px;
}


h3.responsibilties-heading {
    font-size: 14px;
    color: #0f1729;
}

h3.role-title {
    color: #0f172a !important;
    font-size: 26px !important;
}


p.location {
    font-size: 14px;
    color: #0f1729;
}


.ul-list ul {
    list-style: disc !important;
    padding-left: 1.5rem;
    margin: 14px 0px auto;
  }
  
  .ul-list li {
    margin-bottom: 18px;
    font-size: 14px;
  }


  .cs-role-card {
    background: #fff;
    border-radius: 1rem;
    border: 3px dashed #94a3b891;
    padding: 2.5rem;
    margin-bottom: 2rem;
    line-height: 26px;
}

.cs-careers-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 30px;
    color:#0f172a;
}
.email{
    font-size: 14px;
    color: #00a4e4;
}



/* ===== LEFT COLUMN WIDTH CONTROL ===== */
.cs-insights-hub__col {
    max-width: 520px;
  }
  
  /* ===== TITLE ===== */
  .cs-insights-hub__col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #1f2a37;
    margin-bottom: 20px;
  }
  
  .cs-insights-hub__col-title .accent {
    width: 10px;
    height: 10px;
    background-color: #2f5bea;
    border-radius: 2px;
    display: inline-block;
  }
  
  /* ===== LIST ===== */
  .cs-articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* ===== CARD ===== */
  .cs-article-card {
    display: block;
    background-color: white;
    padding: 18px 22px;
    border-radius: 10px;
    border: 1px solid #e2e5e9;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  
  /* ===== TEXT ===== */
  .cs-article-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
  }
  
  /* ===== HOVER ===== */
  .cs-article-card:hover {
    background-color: #ffffff;
    border-color: #cfd6dd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }


  /* ===== PAGE BACKGROUND ===== */
.cs-single {
    background: #f3f5f7;
    padding: 60px 20px;
  }
  
  /* ===== CONTAINER ===== */
  .cs-container {
    max-width: 850px;
    margin: 0 auto;
  }
  
  /* ===== CARD ===== */
  .cs-single-post {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
  }
  
  /* ===== TITLE ===== */
  .cs-post-title {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  /* ===== META ===== */
  .cs-post-meta {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .cs-separator {
    font-size: 12px;
    opacity: 0.6;
  }
  
  /* ===== DIVIDER ===== */
  .cs-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 25px;
  }
  
  /* ===== CONTENT ===== */
  .cs-post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
  }
  
  /* paragraphs */
  .cs-post-content p {
    margin-bottom: 18px;
  }
  
  /* headings */
  .cs-post-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #111827;
  }
  
  .cs-post-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  
  /* links */
  .cs-post-content a {
    color: #2f5bea;
    text-decoration: underline;
  }
  
  /* images */
  .cs-post-content img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .cs-single-post {
      padding: 25px;
    }
  
    .cs-post-title {
      font-size: 26px;
    }
  }


  .cs-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .cs-pagination a,
  .cs-pagination span {
    padding: 8px 14px;
    border: 1px solid #e2e5e9;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    color: #1f2a37;
    display: inline-block;
  }
  
  .cs-pagination .current {
    background: #2f5bea;
    color: #fff;
    border-color: #2f5bea;
  }