/* ============================================================*/
/***** 2026 Homepage - 1 - Welcome & Search *****/
/* ============================================================*/

.new-search {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #240602;
  width: 100%;
  padding: 48px 0 48px;
}

.new-search-container {
  flex: 1 0 auto;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.new-search-hero-image {
  display: block;
  max-height: 130px;
  margin-bottom: 28px;
}

@media only screen and (max-width: 900px) {
  .new-search-container {
    padding: 0 20px;
  }
}

.new-search-title {
  font-family: "Serrif Condensed", serif;
  color: white;
  width: 100%;
  font-size: 64px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
}

.new-search-subtitle {
  color: rgba(255, 255, 255, 0.80);
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 36px;
}

.search-box-homepage {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding-left: 0 !important;
}

.search-box-homepage input[name="commit"] {
  visibility: hidden;
 }

.homepage-search:hover {
  border-color: #ff4648;
  border-width: 5px;
}

.homepage-search {
  width: 100%;
}

.homepage-search input {
  width: 100%;
  height: 52px;
  font-size: 20px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-right: none;
  outline: none;
  padding-left: 20px;
  letter-spacing: 1px;
  border: white;
  border-radius: 4px;
  box-shadow: none;
}

.homepage-search input::placeholder {
  color: rgba(87, 87, 86, 0.8);
  font-family: 'Calibre', sans-serif !important;
}

.homepage-search input:focus::placeholder {
  color: transparent;
}


/* ============================================================*/
/***** 2026 Homepage - 2 - What are you looking for? *****/
/* ============================================================*/

.knowledge-base {
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 60px 0 30px;
}

.knowledge-base-container {
  max-width: 1140px;
  margin: 0 auto;
}

.knowledge-base-title {
  font-family: "Serrif Condensed", serif;
  color: #240602;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: center;

}

/* ---- Knowledge base tabs ---- */
.kb-tabs-nav {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
}

.kb-tab-btn {
  flex: 1;
  text-align: center;
  padding: 14px 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #240602;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  /* margin-bottom: -1px; */
}

.kb-tab-btn:hover {
  background: #FFF4EF;
  color: #FF5F27;
  border-bottom: 2px solid #FF5F27;
}

.kb-tab-btn.active {
  color: #FF5F27;
  background: #FFE5DA;
  font-weight: 500;
  border-bottom: 1.5px solid #FF5F27;
  /* border-radius: 6px 6px 0 0; */
}

.kb-tab-panels {
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff;
}

.kb-tab-panel {
  display: none;
  padding: 30px 10px;
}

.kb-tab-panel.active {
  display: block;
}

.kb-panel-content {
  display: flex;
  gap: 48px;
  align-items: center;
}


.kb-panel-text {
  flex: 1;
}

.kb-panel-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.kb-panel-image img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.kb-panel-heading {
  font-size: 28px;
  font-weight: 500;
  color: #240602;
  margin: 0 0 16px;
}

.kb-panel-description {
  font-size: 20px;
  line-height: 1.35;
  color: #240602;
  margin: 0 0 24px;
}

.kb-panel-link {
  font-size: 18px;
  color: #240602;
  text-decoration: underline;
  font-weight: 500;
}

.kb-panel-link:hover {
  color: #FF5F27;
  text-decoration-color: #FF5F27;
}

@media only screen and (max-width: 767px) {
  .new-search {
    height: auto;
    min-height: 220px;
  }
  .new-search-title {
    font-size: 34px;
  }
  .knowledge-base {
    min-height: auto;
  }
  .knowledge-base-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .kb-tabs-nav {
    flex-wrap: wrap;
  }
  .kb-panel-content {
    flex-direction: column;
  }
  .kb-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}


/* ============================================================*/
/***** 2026 Homepage - 3 - Industry Specific *****/
/* ============================================================*/

.industry-training {
  padding: 40px 0;
  background: #fff;
}

.industry-training-title {
  font-family: "Serrif Condensed", serif;
  color: #240602;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: center;
}

.industry-training-cards {
  display: flex;
  gap: 24px;
}

.industry-card {
  flex: 1;
  background: #f7f4f2;
  border-radius: 8px;
  padding: 32px 28px;
}

.industry-card-icon {
  margin-bottom: 20px;
}

.industry-card-name {
  font-family: "Serrif Condensed", serif;
  font-size: 20px;
  font-weight: 400;
  color: #240602;
  margin-bottom: 12px;
}

.industry-card-description {
  font-size: 15px;
  font-weight: 400;
  color: #5e5452;
  line-height: 1.35;
}

/* ====================================
  2026 Homepage - 3 - CTA
   ==================================== */

.homepage-cta {
  padding: 60px 0px 30px;
}

.homepage-cta-inner {
  min-height: 220px;
  max-width: 1140px;
  margin: 0 auto;
  background: #240602;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 40px;
  overflow: hidden;
  border-radius:14px;
}

.homepage-cta-starsun {
  position: absolute;
  left: 128px;
  top: 51.533px;
  width: 75px;
  height: 74px;
  aspect-ratio: 75/74;
}

.homepage-cta-check {
  position: absolute;
  right: 127px;
  bottom: 93.464px;
  width: 100px;
  height: 91px;
  aspect-ratio: 100/91;
}

.homepage-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.homepage-cta-title {
  font-family: "Serrif Condensed", serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: center;
}

.homepage-cta-btn {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .industry-training-cards {
    flex-direction: column;
  }
  .homepage-cta-starsun,
  .homepage-cta-check {
    display: none;
  }
  .homepage-cta-inner {
    padding: 40px 24px;
  }
  .homepage-cta-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

/* ====================================
   2026 Homepage - 4 - Looking for a specific feature? (carousel)
   ==================================== */

.specific-feature {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 60px 0 30px;
  background: #fff;
}

.specific-feature-container {
  max-width: 1140px;
  margin: 0 auto;
}

.specific-feature-title {
  font-family: 'Serrif Condensed', serif;
  font-size: 42px;
  color: #240602;
  margin-bottom: 40px;
  text-align: center;
}


.feature-carousel {
  position: relative;
}

.feature-carousel-track-wrapper {
  overflow: hidden;
}

.feature-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
}

.feature-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #FAF5EF;
  border-radius: 12px;
  padding: 40px 30px;
  box-sizing: border-box;
}

.feature-card-icon {
  padding-bottom: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}

.feature-card-icon img {
  height: 40px;
  width: 40px;
}

.feature-card-name {
  font-size: 24px;
  font-weight: 600;
  color: #240602;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}

.feature-card-name:hover,
.feature-card-name:active {
  color: #FF5F27;
  text-decoration: underline;
}

.feature-card-description {
  font-size: 20px;
  font-weight: 400;
  color: #3C2D2A;
  line-height: 1.35;
}

.feature-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 40px;
}

.feature-carousel-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, opacity 0.2s;
  padding: 0;
}

.feature-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.feature-carousel-btn:not(:disabled):hover {
  border-color: #1a1a1a;
}

.feature-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0cbc8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, width 0.25s, height 0.25s;
}

.feature-dot.active {
  background: #FF5F27;
  width: 10px;
  height: 10px;
}

@media only screen and (max-width: 767px) {
  .feature-card {
    flex: 0 0 100%;
  }
  .specific-feature-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .specific-feature-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

/* ====================================
   2026 Homepage - 5 - FAQs
   ==================================== */

.faq {
  padding: 60px 0px 30px;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-title {
  font-family: 'Serrif Condensed', serif;
  font-size: 42px;
  font-weight: 400;
  color: #240602;
  text-align: center;
  margin-bottom: 40px;
}

.faq-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.faq-tabs {
  width: 100%;
}

.faq-tabs-nav {
  display: flex;
  border-bottom: 1.5px solid #e0dbd8;
  margin-bottom: 0;
}

.faq-tab-btn {
  flex: 1;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #240602;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.faq-tab-btn.active {
  background: #FFE5DA;
  color: #FF5F27;
  border-bottom: 2px solid #FF5F27;
}

.faq-tab-btn:not(.active):hover {
  background: #FFF4EF;
  border-bottom: 2px solid #FF5F27;
}

.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 4px;
  border-bottom: 1px solid #e8e4e2;
}

.faq-question {
  font-size: 20px;
  font-weight: 400;
  color: #240602;
  text-decoration: none;
  flex: 1;
}

.faq-question:hover {
  color: #e03d1a;
}

.faq-link-icon {
  flex-shrink: 0;
  margin-left: 20px;
  color: #aaa;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.15s;
}

.faq-link-icon:hover {
  color: #e03d1a;
}

@media only screen and (max-width: 767px) {
  .faq-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .faq-tabs-nav {
    flex-wrap: wrap;
  }
  .faq-tab-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}





