/* =========================
   COLOR ROOTS
========================= */

:root {
  /* MAIN BRAND COLORS */

  --primary-color: #ffcc00;
  --primary-hover: #ffcc00;

  --dark-bg: #0d0d0d;
  --border-color: #222;

  --text-white: #ffffff;
  --text-dark: #000000;

  --icon-border: #444;

  /* SHADOW */

  --shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =========================
   HERO SECTION   (261)
========================= */

.hero-section {
  background: var(--dark-bg);
  color: var(--text-white);
}

/* BADGE */

.badge-custom {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  border: 1px solid var(--border-color);

  font-size: 13px;

  color: var(--primary-hover);

  background: #111;

  letter-spacing: 1px;
}

/* TITLE */

.hero-title {
  font-size: 48px;

  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 20px;
}

/* DESCRIPTION */

.hero-desc {
  font-size: 17px;

  color: #bbb;

  max-width: 520px;
}

/* BUTTONS */

.btn-primary {
  background: var(--primary-hover);
  color: var(--dark-bg);

  border: none;

  font-weight: 600;

  padding: 14px 26px;

  border-radius: 12px;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline-primary {
  border: 1px solid var(--primary-hover);

  color: var(--primary-hover);

  border-radius: 12px;

  padding: 14px 26px;
}

.btn-outline-primary:hover {
  background: var(--primary-hover);

  color: var(--text-dark);
}

/* LOCATION */

.hero-location {
  color: #888;

  font-size: 14px;
}

/* STATS */

.hero-stats {
  display: flex;

  gap: 40px;

  flex-wrap: wrap;
}

.stat-item h3 {
  color: var(--primary-hover);

  font-size: 28px;

  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;

  color: #aaa;
}

/* FORM */

.audit-form {
  background: #111;

  padding: 30px;

  border-radius: 18px;

  border: 1px solid var(--border-color);

  box-shadow: var(--shadow);
}

.audit-form h4 {
  font-weight: 600;
}

.form-sub {
  color: #aaa;

  font-size: 14px;

  margin-bottom: 20px;
}

/* INPUT */

.form-control,
.form-select {
  background: #0d0d0d;

  border: 1px solid var(--border-color);

  color: #fff;

  padding: 12px;

  border-radius: 10px;
}

.form-control::placeholder {
  color: #666;
}

.form-note {
  font-size: 13px;

  color: #888;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-title {
    font-size: 38px;
    text-align: center;
  }
  .hero-desc,
  .hero-location,.trusted-text {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

}

.text-primary {
  color: var(--primary-hover) !important;
}

/* =========================
   TRUSTED CLIENTS SECTION      418
========================= */

.trusted-section {
  background: var(--dark-bg);

  padding: 30px 0;

  border-top: 1px solid var(--border-color);

  border-bottom: 1px solid var(--border-color);
}

/* WRAPPER */

.trusted-wrapper {
  display: flex;

  align-items: center;

  gap: 30px;

  flex-wrap: wrap;
}

/* TEXT */

.trusted-text {
  color: #aaa;

  font-size: 13px;

  letter-spacing: 2px;

  white-space: nowrap;
}

/* LOGO CONTAINER */

.trusted-logos {
  display: flex;

  align-items: center;

  justify-content: center;
  gap: 18px;

  flex-wrap: wrap;
}

/* LOGO BOX */

.logo-box {
  border: 1px solid var(--border-color);

  padding: 12px 26px;

  border-radius: 10px;

  background: #111;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 120px;

  height: 60px;

  transition: 0.3s;
}

/* HOVER */

.logo-box:hover {
  border-color: var(--primary-hover);

  transform: translateY(-2px);
}

/* IMAGE AUTO FIT */

.logo-box img {
  max-width: 100%;

  max-height: 30px;

  object-fit: contain;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .trusted-wrapper {
    flex-direction: column;

    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .trusted-logos {
    gap: 12px;
  }

  .logo-box {
    min-width: 120px;

    height: 55px;
  }
}

/* =========================
   PROBLEM SECTION
========================= */

.problem-section {
  background: var(--dark-bg);

  padding: 90px 0;

  color: var(--text-white);
}

/* BADGE */

.problem-badge {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  border: 1px solid var(--border-color);

  font-size: 12px;

  letter-spacing: 2px;

  color: var(--primary-hover);

  margin-bottom: 20px;
}

/* TITLE */

.problem-title {
  font-size: 44px;

  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 20px;
}

.highlight-text {
  color: var(--primary-hover);
}

/* DESCRIPTION */

.problem-desc {
  max-width: 680px;

  margin: auto;

  color: #aaa;

  font-size: 17px;
}

/* CARD */

.problem-card {
  background: #111;

  border: 1px solid var(--border-color);

  border-radius: 18px;

  padding: 32px;

  height: 100%;

  transition: 0.3s;
}

.problem-card:hover {
  border-color: var(--primary-hover);

  transform: translateY(-6px);
}

/* ICON */

.icon-box {
  width: 55px;

  height: 55px;

  background: #1a1a1a;

  border: 1px solid var(--border-color);

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  margin-bottom: 18px;
}

/* TITLE */

.problem-card h5 {
  font-weight: 600;

  margin-bottom: 12px;
}

/* TEXT */

.problem-card p {
  color: #aaa;

  font-size: 15px;

  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .problem-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .problem-section {
    padding: 60px 0;
  }
}

/* =========================
   APPROACH SECTION
========================= */

.approach-section {
  background: var(--dark-bg);

  padding: 90px 0;

  color: var(--text-white);
}

/* BADGE */

.approach-badge {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  border: 1px solid var(--border-color);

  font-size: 12px;

  letter-spacing: 2px;

  color: var(--primary-hover);

  margin-bottom: 20px;
}

/* TITLE */

.approach-title {
  font-size: 44px;

  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 18px;
}

.approach-desc {
  color: #aaa;

  font-size: 16px;

  margin-bottom: 30px;
}

/* FEATURE ITEM */

.approach-item {
  display: flex;

  gap: 16px;

  margin-bottom: 22px;
}

.approach-item h6 {
  font-weight: 600;

  margin-bottom: 6px;
}

.approach-item p {
  color: #aaa;

  font-size: 14px;
}

/* ICON */

.icon-box {
  width: 50px;

  height: 50px;

  background: #1a1a1a;

  border: 1px solid var(--border-color);

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  flex-shrink: 0;
}

/* RIGHT CARD */

.performance-card {
  background: #111;

  padding: 32px;

  border-radius: 18px;

  border: 1px solid var(--border-color);

  box-shadow: var(--shadow);
}

.performance-title {
  color: var(--primary-hover);

  margin-bottom: 24px;

  font-size: 14px;

  letter-spacing: 1px;
}

/* ROW */

.performance-row {
  display: flex;

  justify-content: space-between;

  padding: 16px 0;

  border-bottom: 1px solid var(--border-color);
}

.performance-row span {
  color: #aaa;
}

.performance-row strong {
  color: var(--primary-hover);

  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .approach-title {
    font-size: 34px;
  }

  .performance-card {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .approach-section {
    padding: 60px 0;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  background: var(--dark-bg);
  padding: 90px 0;
  color: var(--text-white);
}

/* BADGE */

.services-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--primary-hover);
  margin-bottom: 18px;
}

/* TITLE */

.services-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-desc {
  max-width: 650px;
  margin: auto;
  color: #aaa;
  font-size: 16px;
}

/* CARD */

.service-card {
  background: #111;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  transition: 0.3s;
}

.service-card:hover {
  border-color: var(--primary-hover);
  transform: translateY(-6px);
}

/* NUMBER */

.service-number {
  font-size: 12px;
  color: var(--primary-hover);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* ICON */

.service-icon {
  font-size: 24px;
  margin-bottom: 14px;
}

/* TEXT */

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 16px;
}

/* RESULT */

.service-result {
  color: var(--primary-hover);
  font-size: 14px;
  margin-bottom: 14px;
}

/* LINK */

.service-link {
  color: var(--primary-hover);
  text-decoration: none;
  font-weight: 500;
}

.service-link:hover {
  color: var(--primary-hover);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .services-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }
}

/* =========================
   CASE STUDIES SECTION
========================= */

.case-section {
  background: var(--dark-bg);
  padding: 90px 0;
  color: var(--text-white);
}

/* BADGE */

.case-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--primary-hover);
  margin-bottom: 18px;
}

/* TITLE */

.case-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
}

.case-desc {
  max-width: 650px;
  margin: auto;
  color: #aaa;
}

/* CARD */

.case-card {
  background: #111;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
}

.case-card:hover {
  border-color: var(--primary-hover);
  transform: translateY(-6px);
}

/* CONTENT */

.case-content {
  padding: 30px;
}

.case-category {
  font-size: 12px;
  color: var(--primary-hover);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.case-label {
  font-size: 11px;
  color: var(--primary-color) !important ;
  margin-top: 14px;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.case-content p {
  color: #aaa;
  font-size: 14px;
}

/* RESULT STRIP */

.case-result {
  background: #1a1a1a;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding: 18px;
}

.case-result h4 {
  color: var(--primary-hover);
  margin: 0;
}

.case-result span {
  font-size: 12px;
  color: #999;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .case-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .case-section {
    padding: 60px 0;
  }

  .case-result {
    gap: 12px;
  }
}

/* =========================
   FRAMEWORK SECTION
========================= */

.framework-section {
  background: var(--dark-bg);
  padding: 100px 0;
  color: var(--text-white);
}

/* BADGE */

.framework-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--primary-hover);
  margin-bottom: 18px;
}

/* TITLE */

.framework-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
}

.framework-desc {
  max-width: 650px;
  margin: auto;
  color: #aaa;
}

/* TIMELINE LINE */

.framework-timeline {
  position: relative;
  margin-top: 70px;
}

.framework-timeline::before {
  content: "";

  position: absolute;

  top: 50px;

  left: 0;

  width: 100%;

  height: 2px;

  background: var(--border-color);
}

/* STEP */

.framework-step {
  position: relative;
}

.step-circle {
  width: 100px;

  height: 100px;

  margin: auto;

  border-radius: 50%;

  border: 2px solid var(--primary-hover);

  background: #111;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  position: relative;

  margin-bottom: 18px;
}

/* STEP NUMBER */

.step-number {
  position: absolute;

  top: -8px;

  right: -8px;

  width: 28px;

  height: 28px;

  background: var(--primary-hover);

  color: var(--text-dark);

  border-radius: 50%;

  font-size: 13px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 600;
}

/* TEXT */

.framework-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.framework-step p {
  color: #aaa;
  font-size: 14px;
  max-width: 260px;
  margin: auto;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .framework-title {
    font-size: 34px;
  }

  .framework-timeline::before {
    display: none;
  }
}

/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
  background: var(--dark-bg);
  padding: 90px 0;
  color: var(--text-white);
}

/* BADGE */

.industries-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--primary-hover);
  margin-bottom: 18px;
}

/* TITLE */

.industries-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
}

.industries-desc {
  max-width: 650px;
  margin: auto;
  color: #aaa;
}

/* CARD */

.industry-card {
  background: #111;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}

/* HOVER */

.industry-card:hover {
  border-color: var(--primary-hover);
  transform: translateY(-5px);
}

/* ACTIVE CARD */

.active-card {
  border: 1px solid var(--primary-hover);
}

/* ICON */

.industry-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

/* TITLE */

.industry-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* TEXT */

.industry-card p {
  color: #aaa;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .industries-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .industries-section {
    padding: 60px 0;
  }
  .industry-card {
    padding: 5px;
  }
}

/* =========================
   COVERAGE SECTION
========================= */

.coverage-section {
  background: var(--dark-bg);
  padding: 100px 0;
  color: var(--text-white);
}

/* BADGE */

.coverage-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--primary-hover);
  margin-bottom: 18px;
}

/* TITLE */

.coverage-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* DESCRIPTION */

.coverage-desc {
  color: #aaa;
  margin-bottom: 16px;
}

/* =========================
   AREA PILLS - EXACT STYLE
========================= */

.area-list {
  margin-top: 30px;

  display: flex;

  flex-wrap: wrap;

  gap: 14px;
}

/* PILL */

.area-pill {
  padding: 12px 22px;

  border-radius: 999px;

  border: 1px solid rgba(251, 165, 4, 0.45);

  color: var(--primary-hover);

  font-size: 14px;

  font-weight: 500;

  background: rgba(251, 165, 4, 0.05);

  cursor: pointer;

  transition: all 0.25s ease;

  letter-spacing: 0.3px;
}

/* HOVER */

.area-pill:hover {
  background: var(--primary-hover);

  color: var(--text-dark);
  font-weight: bold;

  border-color: var(--primary-hover);

  transform: translateY(-2px);

  box-shadow: 0 6px 16px rgba(251, 165, 4, 0.25);
}

/* ACTIVE (OPTIONAL) */

.area-pill.active {
  background: var(--primary-hover);

  color: var(--text-dark);
}

/* MOBILE */

@media (max-width: 576px) {
  .area-pill {
    padding: 10px 18px;

    font-size: 13px;
  }
}

/* RIGHT CARD */

.coverage-card {
  background: #111;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
}

.coverage-card h5 {
  font-weight: 600;
  margin-bottom: 14px;
}

.coverage-card p {
  color: #aaa;
  margin-bottom: 14px;
}

/* STATS */

.coverage-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.coverage-stats h3 {
  color: var(--primary-hover);
  margin: 0;
}

.coverage-stats span {
  font-size: 13px;
  color: #999;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .coverage-title {
    font-size: 34px;
  }

  .coverage-card {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .coverage-section {
    padding: 70px 0;
  }

  .coverage-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* =========================
   IMPACT / NUMBERS SECTION
========================= */

.impact-section {
  background: var(--dark-bg);

  padding: 100px 0;

  color: var(--text-white);
}

/* BADGE */

.impact-badge {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  border: 1px solid var(--border-color);

  font-size: 12px;

  letter-spacing: 2px;

  color: var(--primary-hover);

  margin-bottom: 18px;
}

/* TITLE */

.impact-title {
  font-size: 44px;

  font-weight: 700;

  margin-bottom: 14px;
}

.impact-desc {
  max-width: 650px;

  margin: auto;

  color: #aaa;

  font-size: 16px;
}

/* =========================
   CARD
========================= */

.impact-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.4)
  );

  border: 1px solid rgba(251, 165, 4, 0.25);

  border-radius: 20px;

  padding: 42px 32px;

  text-align: center;

  height: 100%;

  transition: all 0.3s ease;

  position: relative;
}

/* HOVER EFFECT */

.impact-card:hover {
  border-color: var(--primary-hover);

  transform: translateY(-6px);

  box-shadow: 0 10px 30px rgba(251, 165, 4, 0.15);
}

/* =========================
   NUMBER
========================= */

.impact-number {
  font-size: 52px;

  font-weight: 700;

  color: var(--primary-hover);

  margin-bottom: 12px;
}

/* HEADING */

.impact-heading {
  font-size: 18px;

  font-weight: 600;

  margin-bottom: 12px;
}

/* DESCRIPTION */

.impact-card p {
  color: #aaa;

  font-size: 14px;

  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .impact-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .impact-number {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .impact-section {
    padding: 70px 0;
  }
}

/* =========================
   SLIM CTA AUDIT SECTION
========================= */

.cta-audit-slim {
  background: linear-gradient(135deg, #d4a93c, #c79a2b);

  padding: 60px 0;
  /* slim height */

  text-align: center;

  position: relative;
}

/* TITLE */

.cta-title {
  font-size: 38px;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 12px;
}

/* SUBTITLE */

.cta-subtitle {
  font-size: 16px;

  color: #1f1f1f;

  max-width: 700px;

  margin: auto;

  margin-bottom: 28px;
}

/* BUTTON GROUP */

.cta-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 18px;
}

/* BUTTON */

.cta-btn {
  padding: 14px 26px;

  border-radius: 10px;

  font-weight: 600;

  font-size: 15px;

  text-decoration: none;

  display: inline-block;

  transition: all 0.3s ease;
}

/* BLACK BUTTON */

.cta-btn.black {
  background: var(--text-dark);

  color: #fff;
}

.cta-btn.black:hover {
  background: #111;

  transform: translateY(-2px);
}

/* WHATSAPP BUTTON */

.cta-btn.whatsapp {
  background: #25d366;

  color: #fff;
}

.cta-btn.whatsapp:hover {
  background: #1ebe5d;
}

/* FOOTER TEXT */

.cta-footer {
  font-size: 14px;

  color: #1f1f1f;

  margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .cta-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .cta-audit-slim {
    padding: 45px 15px;
  }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
  background: var(--dark-bg);

  padding: 100px 0;
}

/* BADGE */

.section-badge {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  border: 1px solid var(--border-color);

  font-size: 12px;

  letter-spacing: 2px;

  color: var(--primary-hover);

  margin-bottom: 18px;
}

/* TITLE */

.section-title {
  color: #fff;

  font-size: 44px;

  font-weight: 700;

  margin-bottom: 14px;
}

/* DESC */

.section-desc {
  color: #aaa;

  max-width: 650px;

  margin: auto;
}

/* CARD */

.testimonial-card {
  background: #0f0f0f;

  border: 1px solid rgba(251, 165, 4, 0.25);

  border-radius: 20px;

  padding: 30px;

  height: 100%;

  transition: all 0.3s ease;
}

/* HOVER */

.testimonial-card:hover {
  border-color: var(--primary-hover);

  transform: translateY(-6px);

  box-shadow: 0 10px 30px rgba(251, 165, 4, 0.15);
}

/* STARS */

.stars {
  color: #fbbf24;

  font-size: 16px;

  margin-bottom: 15px;
}

/* TEXT */

.testimonial-text {
  color: #aaa;

  font-size: 14px;

  line-height: 1.7;

  margin-bottom: 20px;
}

/* USER */

.testimonial-user {
  display: flex;

  align-items: center;

  gap: 14px;
}

/* AVATAR */

.avatar {
  width: 45px;

  height: 45px;

  border-radius: 50%;

  border: 1px solid var(--primary-hover);

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--primary-hover);

  font-weight: 600;
}

/* NAME */

.user-name {
  font-weight: 600;

  color: #fff;
}

/* LOCATION */

.user-location {
  font-size: 13px;

  color: #aaa;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .section-title {
    font-size: 34px;
  }
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  background: var(--dark-bg);

  padding: 100px 0;
}

/* WRAPPER */

.faq-wrapper {
  max-width: 900px;

  margin: auto;
}

/* ITEM */

.faq-item {
  border: 1px solid rgba(251, 165, 4, 0.25);

  border-radius: 12px;

  margin-bottom: 16px;

  overflow: hidden;

  transition: all 0.3s ease;
}

/* ACTIVE */

.faq-item.active {
  border-color: var(--primary-color);
}

/* QUESTION */

.faq-question {
  padding: 18px 22px;

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-weight: 600;

  color: #fff;
}

/* ICON */

.faq-icon {
  width: 32px;

  height: 32px;

  border-radius: 50%;

  border: 1px solid var(--primary-color);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  color: var(--primary-color);
}

/* ANSWER */

.faq-answer {
  padding: 0 22px 18px;

  color: #aaa;

  font-size: 14px;

  line-height: 1.7;

  display: none;
}

/* SHOW */

.faq-item.active .faq-answer {
  display: block;
}

/* ============================= */
/* PROBLEMS SECTION */
/* ============================= */

.problems-section {
  padding: 100px 0;

  background: var(--dark-bg);

  color: var(--text-white);
}

/* BADGE */

.section-badge {
  display: inline-block;

  padding: 6px 18px;

  font-size: 13px;

  border: 1px solid var(--primary-hover);

  border-radius: 30px;

  color: var(--primary-hover);

  letter-spacing: 1px;

  margin-bottom: 18px;
}

/* TITLE */

.section-title {
  font-size: 44px;

  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 15px;
}

.section-title span {
  color: var(--primary-hover);
}

/* SUBTITLE */

.section-subtitle {
  color: #b5b5b5;

  font-size: 18px;

  max-width: 700px;

  margin: 0 auto;
}

/* CARD */

.problem-card {
  background: #111;

  padding: 32px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.3s;

  height: 100%;

  position: relative;

  overflow: hidden;
}

/* HOVER */

.problem-card:hover {
  border-color: var(--primary-hover);

  transform: translateY(-6px);
}

/* ICON */

.problem-icon {
  font-size: 34px;

  margin-bottom: 16px;
}

/* TITLE */

.problem-card h4 {
  font-size: 20px;

  font-weight: 600;

  margin-bottom: 12px;
}

/* TEXT */

.problem-card p {
  color: #b5b5b5;

  font-size: 15px;

  line-height: 1.6;
}

/* MOBILE */

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.progress-bar {
  height: 6px;

  background: #2a2a2a;

  border-radius: 10px;

  overflow: hidden;

  margin-top: 8px;
}

.progress-fill {
  height: 100%;

  width: 0;

  background: linear-gradient(90deg, #ffcc00, #ffcc00);

  border-radius: 10px;
}

/* SECTION */

.solution-section {
  background: #0d0d0d;

  color: #fff;
}

/* BADGE */

.badge-solution {
  display: inline-block;

  padding: 6px 16px;

  border: 1px solid #ffcc00;

  border-radius: 30px;

  color: #ffcc00;

  font-size: 13px;
}

/* TITLE */

.solution-title {
  font-size: 42px;

  font-weight: 700;
}

.solution-title span {
  color: #ffcc00;
}

/* SUBTITLE */

.solution-subtitle {
  color: #b5b5b5;

  max-width: 700px;

  margin: auto;
}

/* FEATURE */

.feature-item {
  align-items: flex-start;
}

.icon-box {
  width: 46px;

  height: 46px;

  background: #1a1a1a;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 16px;

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-title {
  font-weight: 600;

  margin-bottom: 6px;
}

.feature-text {
  color: #b5b5b5;
}

/* CARD */

.result-card {
  background: #111;

  padding: 30px;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* HEADING */

.result-heading {
  color: #b5b5b5;
}

/* PROGRESS */

.custom-progress {
  height: 6px;

  background: #2a2a2a;

  border-radius: 10px;

  margin-top: 8px;
}

.progress-bar {
  background: linear-gradient(90deg, #ffcc00, #ffcc00);
}

/* NUMBER */

.progress-number {
  color: #ffcc00;

  font-weight: 600;
}

/* INFO BOX */

.market-box {
  background: #1a1a1a;

  padding: 16px;

  border-radius: 10px;

  margin-top: 20px;

  color: #b5b5b5;
}

/* MOBILE */

@media (max-width: 768px) {
  .solution-title {
    font-size: 28px;
  }
}

/* =========================
SERVICES SECTION
========================= */

.services-section {
  background: #0d0d0d;

  color: #fff;
}

/* TITLE */

.services-title {
  font-size: 42px;

  font-weight: 700;
}

.services-title span {
  color: #ffcc00;
}

/* SUBTITLE */

.services-subtitle {
  color: #b5b5b5;

  max-width: 700px;

  margin: auto;
}

/* CARD */

.service-card {
  background: #111;

  padding: 30px;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  height: 100%;

  transition: 0.3s;
}

/* HOVER */

.service-card:hover {
  border-color: #ffcc00;

  transform: translateY(-6px);
}

/* ACTIVE CARD */

.service-card.active {
  border-color: #ffcc00;
}

/* NUMBER */

.service-number {
  font-size: 13px;

  letter-spacing: 2px;

  color: #ffcc00;

  margin-bottom: 16px;
}

/* TITLE */

.service-card h4 {
  font-weight: 600;

  margin-bottom: 12px;
}

/* TEXT */

.service-card p {
  color: #b5b5b5;

  font-size: 15px;
}

/* LINK */

.learn-link {
  color: #ffcc00;

  font-weight: 500;

  text-decoration: none;

  display: inline-block;

  margin-top: 14px;
}

.learn-link:hover {
  color: #ffcc00;
}

/* MOBILE */

@media (max-width: 768px) {
  .services-title {
    font-size: 28px;
  }
}

/* =========================
CTA SECTION
========================= */

.cta-section {
  background: #c9a227;

  color: var(--text-dark);

  text-align: center;
}

.cta-title {
  font-size: 40px;

  font-weight: 700;
}

.cta-subtitle {
  margin-top: 10px;

  color: #222;
}

/* BUTTONS */

.cta-buttons {
  margin-top: 25px;

  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;
}

.btn-call {
  background: #fff;

  padding: 12px 22px;

  border-radius: 10px;

  text-decoration: none;

  color: var(--text-dark);

  font-weight: 600;
}

.btn-whatsapp {
  background: #25d366;

  padding: 12px 22px;

  border-radius: 10px;

  color: #fff;

  font-weight: 600;

  text-decoration: none;
}

.btn-proposal {
  background: var(--text-dark);

  padding: 12px 22px;

  border-radius: 10px;

  color: #fff;

  font-weight: 600;

  text-decoration: none;
}

.cta-note {
  margin-top: 15px;

  font-size: 14px;

  color: #333;
}

/* =========================
PROCESS SECTION
========================= */

.process-section {
  background: #0d0d0d;

  color: #fff;
}

/* BADGE */

.section-badge {
  display: inline-block;

  padding: 6px 14px;

  border: 1px solid #ffcc00;

  border-radius: 50px;

  color: #ffcc00;

  font-size: 12px;

  margin-bottom: 15px;
}

/* TITLE */

.process-title {
  font-size: 42px;

  font-weight: 700;
}

.process-title span {
  color: #ffcc00;
}

.process-subtitle {
  color: #b5b5b5;

  max-width: 700px;

  margin: auto;
}

/* STEP */

.process-step {
  text-align: center;

  padding: 10px;
}

.process-icon {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  border: 2px solid #ffcc00;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

  margin: auto;

  margin-bottom: 15px;

  background: #111;
}

.process-step h6 {
  font-weight: 600;

  margin-bottom: 5px;
}

.process-step p {
  font-size: 13px;

  color: #b5b5b5;
}

/* MOBILE */

@media (max-width: 768px) {
  .cta-title {
    font-size: 26px;
  }

  .process-title {
    font-size: 28px;
  }
}

/* =========================
TESTIMONIALS SECTION
========================= */

.testimonial-section {
  background: #0d0d0d;

  color: #fff;
}

/* BADGE */

.section-badge {
  display: inline-block;

  padding: 6px 14px;

  border: 1px solid #ffcc00;

  border-radius: 50px;

  color: #ffcc00;

  font-size: 12px;

  margin-bottom: 15px;
}

/* TITLE */

.testimonial-title {
  font-size: 42px;

  font-weight: 700;
}

.testimonial-title span {
  color: #ffcc00;
}

/* SUBTITLE */

.testimonial-subtitle {
  color: #b5b5b5;

  max-width: 700px;

  margin: auto;
}

/* CARD */

.testimonial-card {
  background: #111;

  padding: 28px;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  height: 100%;

  transition: 0.3s;
}

.testimonial-card:hover {
  border-color: #ffcc00;

  transform: translateY(-6px);
}

/* STARS */

.stars {
  color: #ffcc00;

  font-size: 18px;

  margin-bottom: 15px;
}

/* TEXT */

.testimonial-text {
  color: #cfcfcf;

  font-size: 15px;

  line-height: 1.6;

  margin-bottom: 22px;
}

/* CLIENT */

.client-info {
  display: flex;

  align-items: center;

  gap: 12px;
}

.client-avatar {
  width: 46px;

  height: 46px;

  border-radius: 50%;

  border: 2px solid #ffcc00;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 600;

  background: #0d0d0d;
}

/* NAME */

.client-info h6 {
  margin: 0;

  font-weight: 600;
}

/* LOCATION */

.client-info span {
  font-size: 13px;

  color: #b5b5b5;
}

/* MOBILE */

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 28px;
  }
}

/* =========================
FAQ SECTION
========================= */

.faq-section {
  background: #0d0d0d;

  color: #fff;
}

/* BADGE */

.section-badge {
  display: inline-block;

  padding: 6px 14px;

  border: 1px solid #ffcc00;

  border-radius: 50px;

  color: #ffcc00;

  font-size: 12px;

  margin-bottom: 15px;
}

/* TITLE */

.faq-title {
  font-size: 42px;

  font-weight: 700;
}

.faq-title span {
  color: #ffcc00;
}

/* ACCORDION */

.custom-accordion .accordion-item {
  background: #111;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  margin-bottom: 14px;

  overflow: hidden;
}

.accordion-button {
  background: transparent;

  color: #fff;

  font-weight: 600;

  padding: 18px 20px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.accordion-button:not(.collapsed) {
  background: #111;

  box-shadow: none;

  border-color: #ffcc00;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: #cfcfcf;

  font-size: 15px;

  padding: 18px 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ICON */

.faq-icon {
  margin-left: auto;

  color: #ffcc00;

  font-size: 14px;
}

/* REMOVE DEFAULT ARROW */

.accordion-button::after {
  display: none;
}

/* MOBILE */

@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }
}

/* =========================
AREAS SECTION
========================= */

.areas-section {
  background: #0d0d0d;

  color: #fff;
}

/* BADGE */

.section-badge {
  display: inline-block;

  padding: 6px 14px;

  border: 1px solid #ffcc00;

  border-radius: 50px;

  color: #ffcc00;

  font-size: 12px;

  margin-bottom: 15px;
}

/* TITLE */

.areas-title {
  font-size: 42px;

  font-weight: 700;
}

.areas-title span {
  color: #ffcc00;
}

/* SUBTITLE */

.areas-subtitle {
  color: #b5b5b5;

  max-width: 700px;

  margin: auto;
}

/* CARD */

.area-card {
  display: block;

  background: #111;

  padding: 26px;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-decoration: none;

  color: #fff;

  height: 100%;

  position: relative;

  transition: 0.3s;
}

/* HOVER */

.area-card:hover {
  border-color: #ffcc00;

  transform: translateY(-6px);
}

/* TITLE */

.area-card h5 {
  font-weight: 600;

  margin-bottom: 6px;
}

/* TEXT */

.area-card p {
  font-size: 14px;

  color: #b5b5b5;
}

/* ARROW */

.arrow {
  position: absolute;

  bottom: 18px;

  left: 26px;

  color: #ffcc00;

  font-size: 18px;
}

/* MOBILE */

@media (max-width: 768px) {
  .areas-title {
    font-size: 28px;
  }
}

/* Page Header / Breadcrumb */
.page-header {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #000000 100%);
  padding: 120px 0;
  color: #fff;
  position: relative;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-item a:hover {
  color: #ffcc00; /* your primary color */
}

.breadcrumb-item.active {
  color: #ffcc00;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 80px 0;
  }

  .page-title {
    font-size: 32px;
  }
}

/* About Section */

.about-section {
  background: #f5f5f5;
}

/* Tag */

.about-tag {
  color: #ffcc00;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

/* Title */

.about-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #111;
}

/* Text */

.about-text {
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Skills */

.skill-item {
  margin-bottom: 18px;
}

.progress {
  height: 8px;
  background: #ddd;
  border-radius: 20px;
}

.progress-bar {
  border-radius: 20px;
}

/* Button */

.about-btn {
  background: #111;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.about-btn:hover {
  background: #ffcc00;
  color: var(--text-dark);
}

/* Image */

.about-img {
  max-width: 100%;
}

/* Responsive */

@media (max-width: 991px) {
  .about-title {
    font-size: 32px;
  }

  .about-section {
    text-align: center;
  }
}

/* ===== Stats Section ===== */

.stats-section {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
}

.stat-box {
  padding: 30px 20px;
  transition: 0.4s;
}

.stat-box:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 40px;
  color: #ffcc00;
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 18px;
  color: #dddddd;
  font-weight: 500;
}

/* Responsive */

@media (max-width: 768px) {
  .stat-box h2 {
    font-size: 34px;
  }

  .stat-box p {
    font-size: 16px;
  }
}
/* DESKTOP = ALL IN ONE LINE */
/* MOBILE = 2 ITEMS IN ONE LINE */

.case-result {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px;
}

.result-box {
  flex: 1;
}

/* MOBILE RESPONSIVE */

@media (max-width: 576px) {
  .result-box {
    flex: 0 0 calc(50% - 8px);
  }
}
/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* =========================
   HORIZONTAL ROW
========================= */

.industry-scroll {
  flex-wrap: nowrap !important;
  width: max-content;
  align-items: stretch;
  gap: 24px;
  padding: 40px 140px 50px 0;
  will-change: transform;
}

/* =========================
   COLUMN FIX
========================= */

.industry-scroll .col-lg-3,
.industry-scroll .col-6 {
  flex: 0 0 auto;
  width: 360px;
  max-width: 360px;
  padding: 0;
  margin-bottom: 0 !important;
}

/* =========================
   CARD DESIGN
========================= */

.industry-card {
  position: relative;
  height: 100%;
  min-height: 340px;
  padding: 42px 34px;
  border-radius: 32px;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );

  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);

  transition: 0.45s ease;
}

/* GLOW BACKGROUND */

.industry-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    circle at top right,
    rgba(255, 204, 0, 0.18),
    transparent 45%
  );
  opacity: 0;
  transition: 0.45s ease;
  pointer-events: none;
}

/* ACTIVE CARD */

.industry-card.active-card {
  border-color: rgba(255, 204, 0, 0.55);
  background: linear-gradient(
    180deg,
    rgba(255, 204, 0, 0.1),
    rgba(255, 255, 255, 0.03)
  );
}

/* ICON */

.industry-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;
  margin-bottom: 30px;

  background: linear-gradient(
    135deg,
    rgba(255, 204, 0, 0.14),
    rgba(255, 255, 255, 0.035)
  );

  border: 1px solid rgba(255, 204, 0, 0.22);
  backdrop-filter: blur(10px);

  transition: 0.45s ease;
}

/* TITLE */

.industry-card h6 {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 18px;
  overflow: hidden;
  perspective: 1000px;
}

/* TEXT */

.industry-card p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  overflow: hidden;
}

/* HOVER */

.industry-card:hover {
  transform: translateY(-16px) scale(1.025);
  border-color: rgba(255, 204, 0, 0.45);
  box-shadow:
    0 0 35px rgba(255, 204, 0, 0.14),
    0 30px 80px rgba(0, 0, 0, 0.22);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card:hover .industry-icon {
  transform: scale(1.08) rotate(6deg);
  border-color: rgba(255, 204, 0, 0.45);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {
  .industries-section {
    padding: 90px 0;
  }

  .industry-scroll {
    gap: 18px;
    padding: 30px 80px 40px 0;
  }

  .industry-scroll .col-lg-3,
  .industry-scroll .col-6 {
    width: 300px;
    max-width: 300px;
  }

  .industry-card {
    min-height: 310px;
    padding: 34px 26px;
  }

  .industry-card h6 {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .industry-scroll .col-lg-3,
  .industry-scroll .col-6 {
    width: 280px;
    max-width: 280px;
  }

  .industry-card {
    min-height: 300px;
    padding: 30px 24px;
  }

  .industry-icon {
    width: 78px;
    height: 78px;
    font-size: 34px;
  }

  .industry-card h6 {
    font-size: 22px;
  }

  .industry-card p {
    font-size: 15px;
  }
}
/* =========================
   MINI STATS INSIDE APPROACH
========================= */

.mini-stats-wrapper {
  display: flex;
  gap: 20px;
  margin: 40px 0 45px;
  flex-wrap: wrap;
}

/* CARD */

.mini-stat-card {
  flex: 1;
  min-width: 220px;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 24px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.03);
}

/* ACTIVE CARD */

.active-card {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.12),
    rgba(20, 20, 20, 0.96)
  );
}

/* GLOW */

.mini-stat-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 193, 7, 0.06);
  border-radius: 50%;
  top: -90px;
  right: -90px;
  filter: blur(50px);
}

/* HOVER */

.mini-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 20px 50px rgba(255, 193, 7, 0.12);
}

/* NUMBER */

.mini-stat-card h2 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

/* LINE */

.stat-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 193, 7, 0.2);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* TEXT */

.mini-stat-card p {
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .mini-stats-wrapper {
    flex-direction: column;
  }

  .mini-stat-card {
    width: 100%;
  }

  .mini-stat-card h2 {
    font-size: 42px;
  }
}
/* =========================
   PORTFOLIO CINEMATIC SECTION
========================= */

.portfolio-section {
  background: #050505;
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 120px 0;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 204, 0, 0.08);
  filter: blur(120px);
  border-radius: 50%;
  top: 10%;
  left: -180px;
}

.portfolio-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 204, 0, 0.05);
  filter: blur(110px);
  border-radius: 50%;
  bottom: 5%;
  right: -160px;
}

.portfolio-container {
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  gap: 70px;
  padding-left: max(80px, calc((100vw - 1140px) / 2));
  position: relative;
  z-index: 2;
}

/* LEFT INTRO */

.portfolio-intro {
  width: 430px;
  min-width: 430px;
}

.portfolio-badge {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: 50px;
  color: #ffcc00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 28px;
  background: rgba(255, 204, 0, 0.04);
}

.portfolio-heading {
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.portfolio-heading span {
  color: #ffcc00;
}

.portfolio-desc {
  color: #bdbdbd;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.portfolio-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.portfolio-mini-stats div {
  border: 1px solid rgba(255, 204, 0, 0.18);
  background: linear-gradient(
    135deg,
    rgba(255, 204, 0, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 22px;
  padding: 24px;
}

.portfolio-mini-stats strong {
  display: block;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.portfolio-mini-stats p {
  color: #aaa;
  margin: 0;
  font-size: 14px;
}

/* HORIZONTAL TRACK */

.portfolio-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-right: 120px;
}

/* CARD */

.portfolio-card {
  width: 390px;
  min-width: 390px;
  min-height: 560px;
  background: rgba(15, 15, 15, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  transition: 0.45s ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.12), transparent 45%);
  opacity: 0;
  transition: 0.45s ease;
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 204, 0, 0.35);
}

.portfolio-card:hover::before,
.active-project::before {
  opacity: 1;
}

.active-project {
  border-color: rgba(255, 204, 0, 0.35);
}

/* IMAGE */

.portfolio-img {
  height: 260px;
  overflow: hidden;
  background: #111;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.08);
}

/* CONTENT */

.portfolio-content {
  padding: 30px;
}

.project-type {
  display: inline-block;
  color: #ffcc00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.portfolio-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.portfolio-content p {
  color: #b6b6b6;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.portfolio-link {
  color: #ffcc00;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.portfolio-link:hover {
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .portfolio-container {
    display: block;
    min-height: auto;
    padding: 70px 20px;
  }

  .portfolio-intro {
    width: 100%;
    min-width: auto;
    margin-bottom: 45px;
  }

  .portfolio-heading {
    font-size: 40px;
  }

  .portfolio-track {
    width: 100%;
    overflow-x: auto;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
  }

  .portfolio-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 575px) {
  .portfolio-section {
    padding: 40px 0;
  }

  .portfolio-heading {
    font-size: 34px;
  }

  .portfolio-card {
    width: 310px;
    min-width: 310px;
    min-height: auto;
  }

  .portfolio-img {
    height: 210px;
  }

  .portfolio-content {
    padding: 24px;
  }

  .portfolio-mini-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 991px) {
  .portfolio-container {
    display: block !important;
    padding: 0 20px;
  }

  .portfolio-intro {
    width: 100% !important;
    min-width: 100% !important;
    margin-bottom: 35px;
  }

  .portfolio-track {
    display: flex !important;

    flex-direction: column !important;

    width: 100% !important;

    gap: 24px;

    transform: none !important;
  }

  .portfolio-card {
    width: 100% !important;

    min-width: 100% !important;

    height: auto;

    transform: none !important;
  }
}
/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

/* Modal Box */
.modal-content {
  background-color: #1c1c1c;
  margin: 80px auto;
  padding: 35px 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
}

/* Close Button */
.close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.close:hover {
  color: #ffd500;
}

/* Headings */
.modal-content h3 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
  color: #ffd500;
  font-weight: 600;
}

/* Input Fields */
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 10px;
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.modal-content input:focus,
.modal-content textarea:focus {
  border: 1px solid #ffd500;
  background-color: #333;
  box-shadow: 0 0 8px rgba(255, 213, 0, 0.4);
}

/* Textarea */
.modal-content textarea {
  min-height: 110px;
  resize: vertical;
}

/* Submit Button */
.modal-content button {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ffd500, #ffc107);
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.modal-content button:hover {
  background: linear-gradient(90deg, #ffc107, #ffd500);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Success Message */
#auditSuccess,
#callSuccess {
  display: none;
  color: #00ff7f;
  text-align: center;
  font-size: 18px;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 600px) {
  .modal-content {
    margin: 40px 15px;
    padding: 25px;
  }
  .modal-content h3 {
    font-size: 22px;
  }
  .modal-content input,
  .modal-content textarea {
    font-size: 15px;
    padding: 12px 14px;
  }
  .modal-content button {
    padding: 14px;
    font-size: 16px;
  }
}

.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease forwards;
}

.success-content {
  background: #108082;
  color: #fff;
  padding: 30px 40px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  animation: slideUp 0.3s ease forwards;
}

.success-content h2 {
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.success-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.success-content button {
  background: #ffff00;
  color: #108082;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.success-content button:hover {
  background: #f2e600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
