:root {
  --primary-orange: #ef9920;
  --dark-bg: #1A1A1A;
  --light-gray: #F8F9FA;
  --border-color: #E0E0E0;
  --text-main: #333;
}

.ta-insights-revamp {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
}

.ta-insights-revamp p {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.ta-insights-revamp .ta-text-gradient-primary,
.ta-insights-revamp .highlight {
  color: var(--primary-orange) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  display: inline !important;
}

.ta-insights-revamp h1,
.ta-insights-revamp h2,
.ta-insights-revamp h3 {
  font-weight: 700;
  color: #111;
}

.ta-insights-revamp .btn-orange:hover {
  background: #d4861a;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.ta-insights-revamp .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ta-insights-revamp .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  font-size: 0.9rem;
}

.hidden{
  visibility: hidden;
}

button {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.btn-dark {
  background: var(--dark-bg);
  color: white;
}

.btn-orange {
  background: var(--primary-orange);
  color: white;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-white {
  background: white;
  color: black;
  padding: 12px 25px;
}

.hero {
  text-align: center;
  padding: 100px 0;
  background: url(../img/cs-hero.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 24%, rgba(255, 255, 255, 0.6) 100%);
  z-index: 1;
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero .highlight {
  color: var(--primary-orange);
}

.hero p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #666;
}

.filters {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 48px auto 32px;
}

hr {
  border: 1px solid var(--border-color);
}

.dropdown-group {
  display: flex;
  gap: 40px;
}

.filter-item label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #777;
  font-family: 'Poppins', sans-serif;
}

.filter-item label.hidden {
  display: block;
  visibility: hidden;
}

.filters select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
}


.filters select {
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 44px; /* space for arrow */
  background-color: #fff;
}

select,
.search-bar input {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 120px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #333;
}

#insights-sort {
  min-width: 130px;
}

#insights-category {
  min-width: 220px;
}

.search-bar {
  display: flex;
  position: relative;
  align-items: flex-end;
}

.search-bar input {
  border-radius: 8px;
  width: 325px;
  padding-right: 100px;
}

.search-bar input::placeholder {
  color: #bbb;
}

.clear-search {
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s ease;
  z-index: 10;
}

.clear-search:hover {
  background: #999;
}

.search-bar button {
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  height: calc(100% - 10px);
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  margin-top: 32px;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 16px #00000010;
  transition: all 0.3s ease;
}

.card:hover h3{
  color: var(--primary-orange);
  transition: all 0.3s ease;
}

.img-placeholder {
  height: 220px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 20px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  background: #FFEBE6;
  color: #FF5630;
}

.year {
  font-size: 0.8rem;
  color: #999;
  margin-left: 10px;
}

.card h3 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
}

.client {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.view-link {
  text-decoration: none;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 0.9rem;
}

.cta-footer {
  background: linear-gradient(rgba(15, 23, 41, 0.9), rgba(15, 23, 41, 0.9)), url('../img/cs-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  min-height: 400px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.cta-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-footer-content h2 {
 font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.cta-footer-content p {
  font-size: 18px;
  font-weight: 400;
  max-width: 500px;
  margin: 0;
}

.cta-footer .btn-white {
  font-weight: 600;
}

.footer-dummy {
  height: 100px;
  background: #fff;
}


/* Header */


/* Header Base */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
