:root{
  /* Use your brand colors here */
  --brand: #35b6c7;        /* main button */
  --brand-dark: #2aa2b2;
  --accent: #ff6b5c;       /* highlighted word */
  --text: #ffffff;
  --muted: rgba(255,255,255,.85);
  --glass: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.18);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
}

.hero-slider{
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  background: #0f2a33;
}

.hero-track{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 650ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.hero-slide{
  position: relative;
  min-width: 100%;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(9,24,30,.78) 0%, rgba(9,24,30,.55) 40%, rgba(9,24,30,.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.25));
}

.hero-inner{
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 0 90px;
  z-index: 2;
}

.hero-content{
  max-width: 760px;
}

.hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.hero-kicker .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(53,182,199,.18);
}

.hero-title{
  margin: 18px 0 14px;
  font-weight: 900;
  line-height: 1.02;
  color: var(--text);
  font-size: clamp(38px, 5vw, 74px);
  text-transform: capitalize;
}

.hero-title .accent{
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title .accent::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: .08em;
  height: .18em;
  background: rgba(255,107,92,.35);
  border-radius: 8px;
  z-index: -1;
}

.hero-text{
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 24px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
}

.btn-primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(53,182,199,.30);
}

.btn-primary:hover{
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-ghost{
  background: transparent;
  color: #fff;
  border: 1px solid var(--stroke);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.hero-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.meta-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.meta-item i{
  color: var(--brand);
}

/* Nav arrows */
.hero-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: background .15s ease, transform .15s ease;
}

.hero-nav:hover{
  background: rgba(0,0,0,.35);
  transform: translateY(-50%) scale(1.03);
}

.hero-nav.prev{ left: 18px; }
.hero-nav.next{ right: 18px; }

/* Dots */
.hero-dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.dot-btn{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
}

.dot-btn.is-active{
  width: 26px;
  background: var(--brand);
}

/* Slide text animation */
.hero-slide .hero-content{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.hero-slide.is-active .hero-content{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px){
  .hero-inner{ padding: 90px 0 80px; }
  .hero-nav{ display:none; } /* clean mobile */
  .meta-item{ width: 100%; justify-content: flex-start; }
}

@media (max-width: 480px){
  .hero-slider, .hero-slide{ min-height: 78vh; }
  .hero-inner{ padding: 85px 0 70px; }
  .hero-text{ font-size: 16px; }
  .btn{ height: 46px; width: 100%; }
}
