/* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary: #CF2E45;
  --primary-dark: #b02438;
  --accent: #FFCF06;

  --bg: #FAFAFA;
  --white: #FFFFFF;
  --light-bg: #F5F5F5;

  --body: #1A1A1A;
  --text-muted: #6B7280;

  --border: #E5E7EB;

  --radius: 8px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
}

/* =========================
   BASE
========================= */
* {
  transition: all 0.2s ease;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--text-muted);
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}

h1,h2,h3,h4,h5 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--body);
}

.h2, h2{
  line-height: 1;
  font-size: clamp(32px, 6vw, 48px);
}

.h3, h3{
  font-size: 24px;
}

.h4, h4{
  font-size: 20px;
}

a{
  color: var(--primary);
  text-decoration: none;
}

/* =========================
   CONTAINER
========================= */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
        padding-left: 64px;
        padding-right: 64px;
    }
}

.container {
    width: 100%;
}

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

.bg-white {
  background: var(--white);
}
.bg-light {
  background: var( --light-bg) !important;
}

.color-accent {
  color: var(--accent);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 100px 0;
}

.section-lg {
  padding: 160px 0;
}

.section-sm {
  padding: 70px 0;
}

@media (max-width: 992px) {
  .section {
    padding: 70px 0;
  }

  .section-lg {
    padding: 120px 0;
  }

  .section-sm {
    padding: 50px 0;
  }
}
/* =========================
   SECTION HEADER (REUSABLE)
========================= */
.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 400;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 24px;
  color: var(--text-muted);
  max-width: 768px;
  font-weight: 300;
  margin-bottom: 0;
}

.font-30{
    font-size: 30px;
}

/* =========================
   BUTTONS
========================= */
.btn{
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  transition: 0.3s;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--body);
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  background: var(--primary-dark);
  transform: scale(1.05);
  color: var(--white);
}

.btn-white{
  background: var(--white);
  color: var(--body);
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  background: var(--primary-dark);
  transform: scale(1.05);
  color: var(--white);
}

/* =========================
   CARD
========================= */
.card-custom {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.card-custom:hover {
  box-shadow: var(--shadow-md);
}

.card-body-custom {
  padding: 24px;
  flex: 1;
}

.card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* =========================
   TEXT
========================= */
.text-muted-custom {
  color: var(--text-muted);
}

.small {
  font-size: 14px;
}

/* NAVBAR BASE */
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  padding: 22px 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
}

/* ON SCROLL */
.navbar-custom.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--border);
}

/* NAV INNER */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img{
  height: 28px;
  width: auto;
}

.nav-right .btn-primary {
  color: var(--white);
  padding: 10px 22px;
}
.nav-right .btn-primary:focus, .nav-right .btn-primary:hover {
  color: var(--white);
}
@media (max-width: 1024px) {
  .nav-logo img{
    height: 20px;
  }
}

.logo-box {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--text);
}

/* TOGGLE BUTTON */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
}

/* overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  z-index: 99;
}

.mobile-overlay.active {
  display: block;
}

/* =========================
   HAMBURGER ICON
========================= */

.nav-toggle {
  width: 28px;
  height: 20px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

/* Lines */
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--body);
  transition: 0.3s ease;
}

/* Top */
.nav-toggle span:nth-child(1) {
  top: 0;
}

/* Middle */
.nav-toggle span:nth-child(2) {
  top: 9px;
}

/* Bottom */
.nav-toggle span:nth-child(3) {
  bottom: 0;
}

/* ACTIVE STATE (X ICON) */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

/* MOBILE STYLES */
@media (max-width: 992px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    transition: 0.3s;
    box-shadow: var(--shadow-md);
    z-index: 2000;
  }
  .nav-links a{
    width: 100%;
  }

  .nav-links.active {
    left: 0;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--bg);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 24px 0;
}

/* Layout */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Text */
.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
}

/* Links */
.footer-links {
  display: flex;
  gap: 20px;
  opacity: 0.6;
}

.footer-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

.footer-links a:hover {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 188px;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,250,250,0.4),
    rgba(250,250,250,0.8)
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

/* Title */
.hero-title {
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 30px;
}

/* Subtitle */
.hero-subtitle {
  font-size: 22px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-content .btn-outline:hover{
    background: var(--white);
    color: var(--text);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }
}

/* =========================
   PROBLEM SECTION
========================= */

.problem-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

/* Background */
.problem-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.problem-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* Overlay */
.problem-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,250,250,0.9);
}

/* Content */
.problem-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

/* Highlight */
.text-primary {
  color: var(--primary) !important;
}

/* Text */
.problem-text {
  font-size: 26px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =========================
   DIFFERENCE SECTION
========================= */

.difference-section {
  padding: 120px 0;
  background: var(--white);
}

/* Title */
.difference-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
}

/* First line (muted) */
.difference-muted {
  color: #9CA3AF; /* soft gray */
  margin-bottom: 10px;
}

/* Glow Indicator Wrapper */
.difference-indicator {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Circle */
.difference-indicator::before {
  content: "";
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,207,6,0.3);
  border-radius: 50%;
  position: absolute;
}

/* Dot */
.difference-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px rgba(255,207,6,0.6);
  animation: pulse 1.8s infinite;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .difference-title {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .difference-title {
    font-size: 32px;
  }
}

/* =========================
   SERVICES SECTION
========================= */


/* Card */
.card {
  background: var(--white);
  color: var(--text-muted);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
@media (max-width: 992px) {
  .card {
    padding: 30px;
  }
}

/* Hover */
.card-hover:hover {
  border-color: #d1d5db;
}

/* Number */
.service-number {
  font-size: 42px;
  font-weight: 700;
  color: #e5e7eb;
  display: block;
  margin-bottom: 30px;
  transition: 0.3s;
}

/* Hover number */
.card:hover .service-number {
  color: var(--primary);
}

.wht-we-do .card{
  height: 100%;
}
.wht-we-do .card p{
  margin-bottom: 0;
}

/* Title */
.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.service-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .service-card {
    padding: 30px;
  }
}

/* =========================
   FEATURED PROJECT
========================= */

.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9CA3AF;
}

/* Card */
.featured-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Image */
.featured-img {
  height: 100%;
  min-height: 400px;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.featured-content {
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Title */
.featured-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Description */
.featured-desc {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* List */
.list-style1{
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.list-style1 li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.list-style1 li:last-child {
  margin-bottom: 0;
}

.list-style1 li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

/* Note */
.featured-note {
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 6px;
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .featured-content {
    padding: 32px 0px 0px;
  }

  .featured-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .featured-desc {
    font-size: 18px;
  }
}

/* =========================
   INVESTMENT PITCH CARDS
========================= */


/* Image */
.pitch-img {
  position: relative;
  height: 180px;
  border-radius: 8px 8px 0 0 ;
  overflow: hidden;
}

.pitch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo */
.pitch-logo {
  height: 32px;
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
}

/* Body */
.pitch-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title */
.pitch-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Location */
.pitch-location {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Description */
.pitch-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* List */
.pitch-list {
  padding-left: 16px;
  margin-bottom: 20px;
}

.pitch-list li {
  font-size: 15px;
  margin-bottom: 5px;
}

/* Meta */
.pitch-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.pitch-meta strong {
  display: block;
}

.pitch-meta span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Accent borders */
.border-accent-top {
  border-top: 4px solid #00BFA5;
}

.border-gold-top {
  border-top: 4px solid #D4AF37;
}

.pitch-footer {
  padding: 0 32px 32px;
}

/* =========================
   PROCESS SECTION
========================= */

.process-section {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Wrapper */
.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
}

/* Horizontal line */
.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border);
  transform: translateY(-50%);
  z-index: 0;
}

/* Step */
.process-step {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 0 20px;
}

/* Label */
.process-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

/* Title */
.process-title {
  font-size: 32px;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .process-wrapper {    
    align-items: flex-start;
  }

  .process-line {
    display: none;
  }

  .process-step {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .process-wrapper{
    flex-direction: column;
  }
}

/* =========================
   FINAL CTA SECTION
========================= */
.cta-section {
  position: relative;
  padding: 140px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cta-section {
    padding: 80px 0;
  }
}


/* Background */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,250,250,0.85);
}

/* Content */
.cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}


/* Text */
.cta-text {
  font-size: 26px;
  color: var(--text-muted);
  margin-bottom: 50px;
}


/* =========================
   RESPONSIVE
========================= */

/* SECTION BASE */
.snap-container {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.snap-section {
  height: 100vh;
  position: relative;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
}

.snap-section .container-custom{
  max-width: 768px;
}

/* DISABLE SNAP MOBILE */
@media (max-width: 992px) {
  .snap-container {
    height: auto;
    scroll-snap-type: none;
  }

  .snap-section {
    height: auto;
    padding: 100px 0;
  }
}

/* BACKGROUND */
.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: -1;
}
.img-layer-left{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 0.8); 
  background-image: linear-gradient(to right, #ffffff, rgb(250 250 250 / 0));
  z-index: -1;
}

.img-layer-left{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 0.8); 
  background-image: linear-gradient(to right, #ffffff, rgb(250 250 250 / 0));
  z-index: -1;
}

.img-layer-right{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 0.8); 
  background-image: linear-gradient(to left, #ffffff, rgb(250 250 250 / 0));
  z-index: -1;
}

/* CENTER HERO */
.section-center {
  justify-content: center;
  text-align: center;
}

/* SPLIT */
.section-split .content-box {
  max-width: 991px;
}
.section-split .content-box .btn-outline {
  border: 1px solid var(--primary);
}
.section-split .content-box .btn-outline i{
  padding-left: 8px;
}
.section-split .content-box .btn-outline:hover i{
  padding-left: 16px;
}

.inner-herro{
  position: relative;
  z-index: 10;
}
/* TYPOGRAPHY */
.hero-title {
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 700;
}

/* =========================
   HERO SCROLL INDICATOR
========================= */

.hero-scroll-indicator {
  margin-top: 60px;
  font-size: 24px;
  color: var(--text-muted);
  animation: bounce 1.8s infinite;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.content-box .section-title-lg {
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1;
  margin-top: 16px;
}

/* LABEL */
.snap-section .label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

/* DESCRIPTION */
.section-desc {
  margin: 20px 0 40px;
  color: var(--text-muted);
}

.border-left {
  border-left: 2px solid var(--primary);
  padding-left: 15px;
}

.border-right {
  border-right: 2px solid var(--primary);
  padding-right: 15px;
}

/* =========================
   SUB NAV
========================= */

.subnav-fixed {
  position: fixed;
  top: 89px;
  width: 100%;
  z-index: 900;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s;
  background: var(--white);
}

.subnav-fixed.show {
  opacity: 1;
  transform: translateY(0);
}

.subnav-inner {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Links */
.subnav-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 10px 0;
}

.subnav-link.active {
  color: var(--text);
  border-color: var(--primary);
}

/* =========================
   SIDE DOTS
========================= */

.progress-indicator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 900;
}

.progress-dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.progress-dot.active {
  background: var(--primary);
  transform: scale(1.5);
}

/* Label */
.progress-dot span {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
}
.progress-dot.active span {
  opacity: 1;
}

.progress-dot:hover span {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .progress-indicator {
    display: none;
  }
}

@media (max-width: 992px) {
  .subnav-fixed {
    display: none;
  }
}

/* HERO */
.inner-hero {
  position: relative;
  padding: 188px 0 100px;
  text-align: center;
  background: #ededed;
background: radial-gradient(circle,rgba(237, 237, 237, 1) 0%, rgba(232, 232, 232, 1) 100%);
}
.inner-hero .container-custom{
  max-width: 991px;
}

.inner-hero .label,
.contact-header .label{
  font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary)
}

/* =========================
   TIMELINE BASE
========================= */

.timeline-phase{
  position: relative;
  z-index: 1;
}

.timeline-container {
  position: relative;
  padding: 0;
}

/* CENTER LINE */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-line-active {
  position: absolute;
  width: 100%;
  height: 0;
  background: var(--primary);
  transition: height 0.3s ease;
}

/* ROW */
.timeline-row {
  display: flex;
  align-items: center;
  gap: 37px;
  margin-bottom: 80px;
  position: relative;
}

.timeline-row.reverse {
  flex-direction: row-reverse;
}

/* CONTENT */
.timeline-content {
  width: 45%;
}

.timeline-content.left {
  text-align: right;
}

/* PHASE */
.phase-header {
  margin-bottom: 24px;
  text-align: center;
}

.phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.phase-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.phase-bg-number {
  font-size: 125px;
  color: rgba(0,0,0,0.03);
  font-weight: 700;
  line-height: 1;
  font-family: Space Grotesk, sans-serif;
  letter-spacing: 15px;
}

/* DOT */
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 2;
}

.timeline-dot.active {
  background: var(--primary);
  color: var(--white);
  border: none;
  border: solid 1px var(--white);
  box-shadow: 0 2px 12px rgba(207,46,69,0.5);
}

/* PHASE LABEL */
.phase-label {
  text-align: center;
  margin-bottom: 50px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* FINAL CARD */
.highlight-box {
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
}
.highlight-box h3{
  color: var(--white);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

  .timeline-line {
    left: 20px;
    transform: none;
  }

  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }

  .phase-header {
    text-align: left;
  }
  .phase-bg-number{
    font-size: 80px;
    letter-spacing: 10px;
    padding-left: 60px;
  }

  .timeline-content {
    width: 100%;
    text-align: left !important;
  }

  .timeline-dot {
    position: absolute;
    left: 0;
  }
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Stats */
.hero-stats {
  margin-top: 80px;
}

.hero-stats card{
  padding: 24px;
}

/* Stat */
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  margin-top: 5px;
}

/* Highlight card */
.glass-card.highlight {
  position: relative;
  overflow: hidden;
}

.glass-card.highlight::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(207,46,69,0.1);
  border-radius: 50%;
  filter: blur(30px);
}

/* Meta */
.stat-meta {
  font-size: 12px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* =========================
   WHY INVEST
========================= */

/* Feature */
.invest-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.invest-feature p{
  color: var(--text-muted);
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  background: var(--light-bg);
  border: solid 1px var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}


/* Header */
.chart-header {
  margin-bottom: 20px;
}

.chart-header h5 {
  margin-bottom: 5px;
}

.chart-header span {
  font-size: 13px;
  color: var(--text-muted);
}

.chart-container img{
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .invest-feature {
    margin-bottom: 20px;
  }
}

/* =========================
   HOW IT WORKS (INVEST)
========================= */

/* STEP CARD */
.step-card {
  position: relative;
  padding: 32px;
  border-radius: 8px;
  transition: 0.4s;
  height: 100%;
}

/* HOVER */
.step-card:hover {
  border-color: var(--primary);
}

/* BIG NUMBER */
.step-bg-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  color: rgba(0,0,0,0.00);
  transition: 0.3s;
}

.step-card:hover .step-bg-number {
  color: rgba(207,46,69,0.08);
}

/* ICON */
.step-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 18px;
}
.step-icon-round{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 600;
}
.step-card:hover .step-icon-round{
  border: solid 1px var(--primary);
  color: var(--primary);
}
.step-card h4{
  margin-bottom: 24px;
}



/* TEXT */
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* PROGRESS BAR */
.progress-bar-custom {
  height: 4px;
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-custom span {
  display: block;
  height: 100%;
  background: var(--primary);
}

/* =========================
   BENEFITS CTA
========================= */

.benefits-wrapper {
  padding: 60px;
  border-radius: 24px;
  border: 1px solid rgba(207,46,69,0.2);
  overflow: hidden;
}

/* Gradient overlay */
.benefits-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom left,
    rgba(207,46,69,0.04),
    transparent
  );
}



/* List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 16px;
}

.benefits-list i {
  color: var(--primary);
  font-size: 20px;
}


/* RIGHT CARD */
.benefits-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 32px;
}

/* Requirement */
.requirement-item {
  margin-bottom: 20px;
}

.requirement-head {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.requirement-head span {
  color: var(--text-muted);
}

.requirement-head strong {
  color: var(--body);
}

/* Progress */
.progress-line {
  height: 6px;
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  background: var(--primary);
}

.progress-line.accent span {
  background: var(--accent);
}

/* Footer note */
.requirement-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 32px;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-wrapper {
    padding: 30px;
  }
}

/* =========================
   CONTACT PAGE
========================= */

/* HEADER */
.contact-header {
  margin-bottom: 80px;
  max-width: 768px;
}
.contact-header .hero-subtitle{
  max-width: inherit;
}


/* CARD */
.contact-card {
  padding: 30px;
  border-radius: 16px;
}

.contact-link{
  font-size: 14px;
}

.border-left-accent {
  border-left: 3px solid var(--primary);
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f8f8;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* DIRECTORY */
.contact-directory div {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.contact-directory div:last-child{
  margin-bottom: 0;
}

.contact-directory span {
  font-size: 12px;
      letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: Space Grotesk, sans-serif;
}

.contact-directory a {
  font-size: 18px;
  color: var(--body);
  text-decoration: none;
}
.contact-directory a:hover{
  color: var(--primary);
}

/* FORM */
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  border: 1px solid var(--border);
}

/* Glow */
.form-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(207,46,69,0.05);
  filter: blur(80px);
  border-radius: 50%;
}

.form-group{
  margin-bottom: 24px;
}
.form-group label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-family: Space Grotesk, sans-serif;
}
::placeholder{
  font-weight: 300;
  color: #cccccc;
  letter-spacing: 0.03em;
  font-size: 16px;
}


/* Input */
.input-minimal {
  width: 100%;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 8px 0 12px;
  background: transparent;
}

.input-minimal:focus {
  outline: none;
  border-color: var(--primary);
}

/* Select */
.select-wrapper {
  position: relative;
}

.select-wrapper i {
  position: absolute;
  right: 0;
  bottom: 10px;
}

/* Textarea */
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: #f8f8f8;
}
textarea:focus{
  border-color: var(--primary);
  outline: none;
  box-shadow: none;
}

/* Footer */
.form-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

@media (max-width: 768px){
  .form-footer{
    flex-direction: column;
  }
}

.form-footer p {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}
.form-footer .btn{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 40px;
  padding-right: 40px;
}

/* =========================
   TRUST SECTION
========================= */

.trust-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Card */
.trust-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0,0,0,0.03);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.3s;
}

/* Hover */
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

/* Icon */
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Variants */
.trust-icon.primary {
  background: rgba(207,46,69,0.1);
  color: var(--primary);
}

.trust-icon.accent {
  background: rgba(255,207,6,0.15);
  color: #b38b00;
}

.trust-icon.neutral {
  background: rgba(0,0,0,0.05);
  color: var(--body);
}

/* Text */
.trust-card h4 {
  font-size: 18px;
  margin-bottom: 3px;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.submit-idea-form{
  max-width: 768px;
  margin: 0 auto;
}


.form-section {
  margin-bottom: 40px;
}
/* Upload */
.upload-area {
  border: 2px dashed var(--border);
  background: #f8f8f8;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.upload-area:hover {
  border-color: var(--primary);
  background: rgba(207,46,69,0.03);
}

.upload-inner i {
  font-size: 32px;
  color: #aaa;
  margin-bottom: 10px;
}

.upload-title {
  font-weight: 500;
}

.upload-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Checkbox */
.form-check-custom {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.up-cv .contact-form-wrapper{
  max-width: 768px;
  margin: 0 auto;
}

/* =========================
   PROJECT PAGE
========================= */

.project-header {
  padding: 200px 0 20px;
  border-bottom: 1px solid var(--border);
}

/* BG */
.header-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), #fff);
}

/* Logo */
.project-logo {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.project-logo img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* Title */
.project-title {
  font-size: 36px;
  font-weight: 700;
}

/* Meta */
.project-meta {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
}

/* Nav */
.project-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--text-muted);
  cursor: pointer;
}

.nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

/* Cards */
.card-light {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 10px;
}

.card-muted {
  background: var(--light-bg);
  border: solid 1px var(--border);
  padding: 40px;
  border-radius: 10px;
}

/* Info */
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--body);
}

.info-row span{
  font-size: 14px;
  color: var(--text-muted);
}
.info-row strong{
  font-weight: 600;
}

/* List */
.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.custom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Section title */
.section-title-sm {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}





