:root {
  --bg: #0a0a0b;
  --bg-2: #0f1116;
  --card: #0f1218;
  --muted: #b2c2cc;
  --text: #e9f1f5;
  --white: #ffffff;
  --primary: #33e1c2;
  /* teal */
  --accent: #2aa3ff;
  --theme-blue: #244596;
  --bright-blue: #0165E3;
  /* azure blue */
  --danger: #ff5c80;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .4);
  --hero-image: url('/images/bg-hero.svg');
  --bg-image: url('/images/bg.svg');
}



/* ===== Breakpoints ===== */

@media (max-width: 1200px) {
  .hero {
    padding-top: 80px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero-video {
    object-fit: cover;
    height: 100%;
  }

  .hero .content {
    max-width: 620px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero .content p {
    font-size: clamp(20px, 5vw, 32px);
  }

  .hero-btn {
    max-width: 200px;
    padding: 10px 22px;
  }
}

/* Extra Small */
@media (max-width: 480px) {
  .hero img {
    max-width: 260px !important;
  }

  .search-bar input {
    font-size: 14px;
    padding-left: 12px !important;
  }
}


html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Macan', system-ui, sans-serif;
  line-height: 1.6
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

.btn.primary {
  background: var(--white);
  color: var(--theme-blue);
  border: 1px solid var(--white);
  font-size: 12px;
  font-weight: bold;
  border-radius: 8px;
  padding: 5px 30px;
}

.btn.primary.hero {
  display: ruby-text;
  padding: 15px 35px;
  margin-top: 20px;
}

.btn.block {
  display: block;
  width: 100%
}


/* Logo styling */
.hero-logo {
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.hero .content {
  z-index: 1;
  position: relative;
  text-align: left;
  width: fit-content;
  margin: auto;
}

.hero .content p {
  color: #fff;
  font-size: 72px;
  letter-spacing: -0.06em;
  z-index: 1;
  position: relative;
}


.hero .content span {
  color: var(--primary);
  font-size: 35px;
  letter-spacing: -0.06em;
  font-weight: 700;
  font-style: italic;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 250px;
  margin: 10px 0;
}

.hero-btn:hover, .hero .filter-list button:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.hero .filter-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .filter-list button {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #ffff;
  border-radius: 9px;
  font-size: 12px;
}

.hero .filter-list button i {
  margin-left: 15px;
}


.search-bar input {
  border-color: #c5c6c9 !important;
  color: #62646a;
  border-radius: 12px !important;
  border-right-width: 1px !important;
  flex: 1 1 auto;
  font-size: 16px;
  padding: 10px 2px 10px 16px !important;
  z-index: 3;
  margin: 20px 0;
}

.search-bar button {
  font-size: 16px;
  width: 48px;
  display: flex;
  height: 40px;
  position: absolute;
  flex-shrink: 0;
  padding: 8px 16px !important;
  z-index: 3;
  float: right;
  right: 26px;
  align-items: center;
  border-radius: 10px !important;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  /* behind everything */
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* dark overlay */
  z-index: 0;
}


.hero {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
}


/* #hero::before {
  content: "";
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url('/images/dot.svg') no-repeat center;
  background-size: contain;
  z-index: 1;
} */

#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 1px;
  background: white;
}


h1.big {
  background: linear-gradient(to right, #6FD5C8 40%, #0165E3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: clamp(36px, 7vw, 130px);
  text-align: left;
  margin: 0 0 10px;
  font-weight: 800;
  font-family: 'Macan', system-ui, sans-serif;
  line-height: 90%;
}

.thin,
.lead {
  font-family: 'Macan', system-ui, sans-serif;
  font-size: clamp(18px, 4vw, 50px);
  line-height: 120%;
  color: var(--white);
  font-weight: 300;
}

p.lead {
  margin: 0;
  font-size: clamp(12px, 4vw, 32px);
  text-align: left;
}

.grid {
  display: grid;
  gap: 22px
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr)
}

.height {
  max-height: 300px !important;
  margin-right: 1%;
  margin-bottom: 1%;
  height: 300px;
}

.service-box {
  min-height: 300px !important;
  white-space: wrap !important;

}

main {
  position: relative;
  overflow: hidden;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
  margin: 80px auto;
}

.stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.stat img {
  height: 45px;
  margin-bottom: 0;
}

.stat-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.stat .number {
  font-size: 36px;
  font-weight: 500;
  color: var(--bright-blue);
  font-family: 'Macan', system-ui, sans-serif;
  line-height: 1.2;
}

.stat p {
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.main-quote {
  font-family: 'Macan', system-ui, sans-serif;
  font-size: clamp(24px, 4vw, 45px);
  line-height: 120%;
  color: var(--white);
  font-weight: 500;
  text-align: left;
  padding: 60px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.main-quote.visible {
  opacity: 1;
  transform: translateY(0);
}


.Quote.container::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 80px;
  width: 15%;
  height: 1px;
  background: white;
}

/* About Us Section */
.aboutus-section {
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.aboutus-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.progress-text {
  background-image: url(/images/kpi_indicator.svg);
  min-width: 407px;
  background-size: cover;
  min-height: 483px;
  background-repeat: no-repeat;
}

.progress-text.calendar {
  background-image: url(/images/calendar.svg);
  min-width: 407px;
  background-size: cover;
  min-height: 483px;
  background-repeat: no-repeat;
}

/* About Us Content */
.aboutus-content {
  flex: 1;
  min-width: 320px;
}

.aboutus-content h1 {
  font-size: clamp(32px, 7vw, 50px);
  background: linear-gradient(to right, #6FD5C8 12%, #0165E3 27%);
  -webkit-background-clip: text;
  font-weight: bold;
  text-transform: none;
  letter-spacing: normal;
}


.aboutus-contentp {
  font-size: 32px;
  font-size: clamp(16px, 7vw, 20px);
  text-align: left;
  font-family: 'Macan', system-ui, sans-serif;
}


.aboutus-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 🔹 Two columns */
  gap: 30px;
  margin-top: 30px;
}

.feature {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 12px;
  text-align: left;
}

.feature-icon {
  display: flex;
  gap: 25px;
}

.feature img {
  width: 50px;
  margin-bottom: 12px;
}

.feature h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.discover-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.discover-link {
  color: #3da5ff;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

.discover-link:hover {
  text-decoration: underline;
}

.discover-feature img {
  width: 40px;
  margin-bottom: 0;
}

.kpi {
  display: flex;
  gap: 14px;
  align-items: center
}

.kpi .n {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary)
}

.kpi .l {
  color: var(--muted)
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #1e2633;
  color: var(--muted);
  font-size: 12px
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: #0c0f14;
  border: 1px solid #1a2230;
  color: var(--text);
}

label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
  display: block
}

.form-row {
  display: grid;
  gap: 12px;
  margin-bottom: 14px
}

.form-row.cols-2 {
  grid-template-columns: repeat(2, 1fr)
}



.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px
}

.table th {
  color: var(--muted);
  text-align: left;
  font-size: 13px
}

.table td,
.table th {
  padding: 10px 14px;
  background: #0d1117;
  border: 1px solid #151b26
}

.table tr td:first-child,
.table tr th:first-child {
  border-radius: 10px 0 0 10px
}

.table tr td:last-child,
.table tr th:last-child {
  border-radius: 0 10px 10px 0
}

.alert {
  padding: 12px 14px;
  border-left: 4px solid var(--accent);
  background: #0d141b;
  border-radius: 12px
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap
}


@media (max-width: 1024px) {

  .actions.badge {
    display: none;
  }

  .brand img {
    height: 70px !important;
  }

}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: 2fr 2fr;
    gap: 30px;
  }

  .grid.cols-3 {
    grid-template-columns: 1fr
  }

  .grid.cols-2 {
    grid-template-columns: 1fr
  }
}


@media(max-width:720px) {
  .form-row.cols-2 {
    grid-template-columns: 1fr
  }

  #hero::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }
}


/* Tablet: 2 Columns remain okay */
@media (max-width: 992px) {
  .aboutus-container {
    justify-content: center;
    text-align: center;
  }

  .aboutus-content {
    text-align: center;
  }

  .feature-icon {
    justify-content: center;
  }
}

/* Mobile: Stack clean */
@media (max-width: 768px) {
  .aboutus-container {
    flex-direction: column;
  }

  .aboutus-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .earnings-card {
    flex: 1 1 100%;
    min-width: 100%;
    height: 380px;
  }

  .aboutus-features {
    grid-template-columns: 1fr;
  }

  .feature {
    text-align: center;
  }

  .feature-icon {
    justify-content: center;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .earnings-card {
    height: 320px;
  }
}
