/* =========================
HERO V2 SLIDER
========================= */

.hero-v2 {
	  padding: 0 !important;
	  position: relative;
  height: 80vh;
  min-height: 860px;
  overflow: hidden;
  margin-top: 0;
background:
radial-gradient(circle at 18% 35%, rgba(54,103,255,0.18), transparent 32%),
radial-gradient(circle at 78% 40%, rgba(47,108,255,0.10), transparent 28%),
linear-gradient(90deg, #06112a 0%, #071a42 46%, #071633 100%);
}

.hero-v2__slides {
position: relative;
min-height: 100%;
}

.hero-v2__slide {
position: absolute;
inset: 0;
opacity: 0;
visibility: hidden;
transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-v2__slide.active-v2 {
opacity: 1;
visibility: visible;
z-index: 2;
}

.hero-v2__bg {
position: absolute;
inset: 0;
background-position: top right;
background-repeat: no-repeat;
background-size: cover;
transform: scale(1.02);
z-index: 0;
}

.hero-v2__overlay {
position: absolute;
inset: 0;
background:
linear-gradient(
90deg,
rgba(6,17,42,0.88) 0%,
rgba(6,17,42,0.74) 18%,
rgba(6,17,42,0.54) 34%,
rgba(6,17,42,0.32) 48%,
rgba(6,17,42,0.16) 62%,
rgba(6,17,42,0.08) 78%,
rgba(6,17,42,0.03) 100%
);
z-index: 1;
}

.hero-v2__container {
position: relative;
z-index: 3;
min-height: 780px;
display: flex;
align-items: center;
}

.hero-v2__content {
max-width: 520px;
color: #fff;
padding: 150px 0 80px;
}

.hero-v2__content h1 {
font-size: clamp(46px, 7vw, 78px);
line-height: 0.95;
letter-spacing: -0.03em;
margin-bottom: 22px;
font-weight: 900;
text-transform: uppercase;
}

.hero-v2__content p {
max-width: 420px;
color: rgba(255,255,255,0.82);
margin-bottom: 34px;
font-size: 18px;
}

.hero-v2__content .btn {
display: inline-block;
padding: 14px 28px;
background: #2f6cff;
color: #fff;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
transition: 0.2s;
}

.hero-v2__content .btn:hover {
background: #1d54d8;
}

/* =========================
ARROWS
========================= */

.hero-v2__arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 5;
width: 54px;
height: 54px;
border: 1px solid rgba(255,255,255,0.22);
border-radius: 50%;
background: rgba(255,255,255,0.08);
color: #fff;
font-size: 38px;
line-height: 1;
cursor: pointer;
backdrop-filter: blur(6px);
}

.hero-v2__arrow--prev {
left: 20px;
}

.hero-v2__arrow--next {
right: 20px;
}

.hero-v2__arrow:hover {
background: rgba(255,255,255,0.2);
}

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

.hero-v2__dots {
position: absolute;
left: 50%;
bottom: 24px;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 6;
}

.hero-v2__dot {
width: 12px;
height: 12px;
border: 0;
border-radius: 50%;
background: rgba(255,255,255,0.35);
cursor: pointer;
transition: 0.2s;
}

.hero-v2__dot.active-v2 {
background: #ffffff;
transform: scale(1.2);
}

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

@media (max-width: 768px) {

.hero-v2,
.hero-v2__slides,
.hero-v2__container {
min-height: 680px;
}

.hero-v2__content {
padding: 140px 0 90px;
}

.hero-v2__content h1 {
font-size: 42px;
}

.hero-v2__arrow {
width: 46px;
height: 46px;
font-size: 30px;
}

}


/* nová verzia karty so split layoutom */
.card-service {
  padding: 0;
}

/* horná časť s obrázkom */
.card-media {
  position: relative;
  height: 220px;
  overflow: visible;
}

/* samotný obrázok */
.card-media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tmavomodrý overlay cez obrázok */
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 35, 74, 0.45); /* môžeš zmeniť na 0.6 alebo 0.7 */
  pointer-events: none;
}

/* kruh s ikonou */
.card-media-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
 /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);*/
  z-index: 2;
}

/* svg ikona */
.card-icon-svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* spodná obsahová časť */
.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 78px 24px 24px; /* väčší top padding kvôli prekrytej ikone */
  text-align: center;
}

.card-body .btn.small {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 12px;
  align-self: center; /* ak chceš tlačidlo na stred */
  margin-top: auto;
}
