/* Avartis Nova – Stil tema ile birebir (Elementor/Vamtam değerleri) */
/* Değişkenler: avartis-nova/assets/css/general-variables.css */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  padding-top: var(--av-header-height);
  overflow-x: hidden;
}

/* Ana içerik alanını yatay taşmadan koru (Bootstrap .row negatif margin + Swiper translate3d).
   body/html'ye overflow vermek SweetAlert2'yi bozduğu için burada main'e uyguluyoruz. */
main {
  overflow-x: hidden;
}

.av-page {
  font-family: var(--av-font);
  font-size: var(--av-body-size);
  line-height: var(--av-body-height);
  color: var(--av-body-text);
}

/* Container – tema ile aynı */
.av-header .container,
.av-hero .container,
.av-stats .container,
.av-features .container,
.av-overview .container,
.av-how .container,
.av-tabs-section .container,
.av-faq .container,
.av-blog-section .container,
.av-footer .container {
  max-width: var(--av-site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--av-container-padding);
  padding-right: var(--av-container-padding);
}

/* ----- Header – sticky, beyaz ----- */
.av-header {
  min-height: var(--av-header-height);
  height: var(--av-header-height);
  background-color: var(--av-accent-5);
  transition: background-color 0.3s;
}
.av-header .container {
  display: flex;
  align-items: center;
  /*min-height: var(--av-header-height);*/
}
.av-header.av-header--scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #2C2C53;
}
.av-logo {
  flex-shrink: 0;
}
.av-logo__img {
  height: 55px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .av-header__collapse {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .av-header__nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* ----- Header – mobil (< 992px) ----- */
@media (max-width: 991.98px) {
  /* Header yüksekliği her zaman sabit */
  .av-header {
    height: var(--av-header-mobile-height) !important;
    min-height: var(--av-header-mobile-height);
    overflow: visible;
  }
  
  .av-logo__img {
    max-height: 40px;
  }
  
  /* Collapse menü: header dışına çıkar, altına açılır */
  .av-header__collapse {
    position: absolute;
    top: var(--av-header-mobile-height);
    left: 0;
    right: 0;
    background: #fff;
    padding: 0.75rem 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.25s ease !important;
  }

  /* Açık durum */
  .av-header__collapse.show {
    opacity: 1;
  }

  /* Kapanırken Bootstrap'in height animasyonunu iptal et, opacity kullan */
  .av-header__collapse.collapsing {
    height: auto !important;
    overflow: visible !important;
    opacity: 0;
    transition: opacity 0.25s ease !important;
  }

  /* Nav linkleri tam genişlik, alt alta */
  .av-nav {
    flex-direction: column;
    width: 100%;
    gap: 2px;
    margin-bottom: 0.75rem;
  }
  .av-nav__link {
    width: 100%;
    border-radius: 12px;
  }

  /* Actions: mobilde dikey stack */
  .av-header .av-header__actions {
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.6rem !important;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.75rem;
  }

  /* Nav'da hiç link yoksa üstteki ayırıcı çizgiyi gizle */
  .av-header__nav-wrap:not(:has(.av-nav a)) + .av-header__actions {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  /* Sosyal ikonlar — sol */
  .av-header .av-social {
    flex: 1;
    gap: 0.35rem;
  }

  /* Dil seçici — sağ */
  .av-header .av-lang {
    flex-shrink: 0;
    margin-left: auto;
  }

  /* Standalone arama butonu gizle (auth wrapper içine taşındı) */
  .av-header .av-header__search:not(.av-header__auth-search) {
    display: none;
  }

  /* Auth wrapper — tam genişlik, 3 sütun, üstte ayırıcı çizgi */
  .av-header .av-header__auth {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* Auth butonları — eşit genişlik */
  .av-header .av-header__auth-btn {
    flex: 1;
    text-align: center;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Arama — sağa yaslanmış, boyutuna dokunulmaz */
  .av-header .av-header__auth-search {
    flex-shrink: 0;
    margin-left: auto;
  }
}
.av-nav {
  margin-bottom: 0;
  gap: 15px;
  background-color: white;
}
.av-header__collapse {
  background-color: white;
}

/* Auth butonları — sadece header'daki giriş/çıkış/kayıt ol */
.av-header__auth-btn {
  height: 48px !important;
}

/* Auth wrapper: desktop'ta inline flex, mobilde tam satır (media query'de override edilir) */
.av-header__auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.av-nav__link {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: var(--av-nav-size);
  font-weight: 600 !important;
  line-height: 1.3em;
  letter-spacing: 0 !important;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  color: var(--av-accent-1) !important;
  padding: 12px 14px !important;
  border-radius: 30px;
  transition: background-color 0.2s, color 0.2s;
}
.av-nav__link:hover,
.av-nav__link.active {
  background-color: var(--av-accent-3) !important;
  color: var(--av-accent-1) !important;
}
.av-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  padding: 14px;
  background-color: #F6F5F2;
  color: var(--av-accent-1);
  border-radius: 50%;
  transition: background-color 0.2s, color 0.2s;
}
.av-header__search i {
  transition: color 0.2s;
}
.av-header__search:hover {
  background-color: var(--av-accent-1);
  color: transparent;
}
.av-header__search:hover i {
  color: var(--av-accent-4);
}
.av-social {
  display: flex;
  gap: 0.5rem;
}
.av-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--av-accent-1) !important;
  font-size: 0.9rem;
  transition: background-color 0.2s, color 0.2s;
}
.av-social__link:hover {
  background-color: var(--av-accent-1);
  color: var(--av-accent-4) !important;
}

/* ----- Buttons – vamtam: 16px 24px, 100px radius ----- */
.av-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--av-btn-padding);
  font-family: var(--av-font);
  font-size: var(--av-btn-size);
  font-weight: var(--av-btn-weight);
  border-radius: var(--av-btn-radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.av-btn--primary {
  background-color: var(--av-btn-bg);
  color: var(--av-btn-text) !important;
}
.av-btn--primary:hover {
  background-color: var(--av-btn-hover-bg);
  color: var(--av-btn-hover-text) !important;
}
.av-btn--link {
  background: transparent;
  color: var(--av-accent-1) !important;
}
.av-btn--link:hover {
  color: var(--av-btn-hover-bg) !important;
}
.av-btn__icon {
  font-size: 1rem;
}

/* ----- Hero – 100vh, margin-bottom 12vh, inner max 730px ----- */

@media screen and (max-width: 768px) {
  
  .av-hero-counter {
    transform: none !important;
  }
  .av-hero-counter-assets-3 {
    position: relative;
    width: 100% !important;
  }
  .av-hero-counter-assets  {
    width: 100% !important;
  }

  .av-hero-counter-assets-2 {
    position: relative;
    width: 100% !important;
  }
}

.av-hero {
  position: relative;
}
.hero-area {
  position: relative;
  min-height: 75vh;
  margin-bottom: 12vh;
  padding: 10px 0;
  display: flex;
  align-items: center;
  background-color: transparent;
}
.av-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  border-radius: 20px 20px 20px 20px;
}
.av-hero .hero-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
  border-radius: 20px 20px 20px 20px;
}
.av-hero__content {
  position: relative;
  z-index: 2;
}
.av-hero .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
.av-hero__inner {
  max-width: 730px;
  min-height: calc(75vh - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.av-hero__badge {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.8em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.av-hero__subtitle {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: var(--av-h2-spacing);
  color: #fff;
  margin-bottom: 0.25rem;
}
.av-hero__divider {
  width: 60px;
  height: 3px;
  background-color: #fff;
  margin: 0.5rem 0 0.75rem;
}
.av-hero__title {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1em;
  color: #fff;
  margin-bottom: 1rem;
}
.av-hero__cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-top: 0.5rem;
  text-decoration: none;
}
.av-hero__cta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: var(--av-btn-hover-bg);
  color: var(--av-btn-text) !important;
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.2px;
  border-radius: 100px 0 0 100px;
  transition: background-color 0.2s, color 0.2s;
}
.av-hero__cta-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: var(--av-btn-hover-bg);
  color: var(--av-btn-text) !important;
  border-radius: 0 100px 100px 0;
  font-size: 1rem;
  transition: background-color 0.2s, color 0.2s;
}
.av-hero__cta:hover .av-hero__cta-text,
.av-hero__cta:hover .av-hero__cta-icon-wrap {
  background-color: var(--av-btn-bg);
  color: var(--av-btn-text) !important;
}

.av-hero-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.av-hero-counter-assets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 245px;
  background: linear-gradient(
    135deg,
    #f2f4f8 0%,
    #eef3f9 50%,
    #fff 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 24px;
}


.av-hero-counter-assets-3 {
  position: relative;
  width: 25%;
}
.av-hero-counter-assets-3 .mid-area-custom,
.av-hero-counter-assets:not(.av-hero-counter-assets-2):not(.av-hero-counter-assets-3) .mid-area-custom {
  width: max-content;
}

.av-hero-counter-assets-2 {
  position: relative;
  width: 25%;
}

.av-hero-counter-assets {
  position: relative;
  width: 50%;
}
.av-hero-counter-assets-3 img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  z-index: -1;
}


.av-hero-counter-assets .left-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
  padding: 20px 0;
  flex: 0 0 42%;
}
.av-hero-counter-assets .left-area h3 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.av-hero-counter-assets .left-area a {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
}

.av-hero-counter-assets .right-area {
  flex: 1;
  height: 100%;
  min-width: 0;
}

.av-assets-stat-box {
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.av-assets-stat-box h3 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.av-assets-stat-box p {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
  white-space: nowrap;
  margin: 0;
}

.av-hero-counter-assets .right-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.av-hero-counter-assets .mid-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}
.av-hero-counter-assets .mid-area h3 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.av-hero-counter-assets .mid-area p {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
  white-space: nowrap;
}

.av-hero-counter-assets .mid-area-custom {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}
.av-hero-counter-assets .mid-area-custom .text-area h3 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.av-hero-counter-assets .mid-area-custom .text-area p {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  color: var(--av-accent-1);
  white-space: nowrap;
}

.av-hero-counter-assets .right-area-custom { 
  display: flex;
  width: 40% !important;
}

.av-hero-counter-assets .text-area {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 15px;
  width: 60% !important;
}
.av-hero-counter-assets .right-area-custom img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  border-radius: 100px;
  border: 1px solid #fff;
  margin-right: -20px;
  margin-bottom: 15px;
}

.av-hero-counter-assets .right-area-custom img:not(:last-child) {
  margin-right: -20px;
}

/* ----- Stats (Assets) – hero üzerine taşan beyaz kutu, yan yana ----- */
.av-stats {
  margin-top: -12vh;
  padding: 2.5rem 0 10vh;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}
.av-stats__container {
  max-width: var(--av-site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--av-container-padding);
  padding-right: var(--av-container-padding);
}
.av-stats__row {
  align-items: stretch;
}
.av-stats__header-col {
  display: flex;
  align-items: flex-start;
}
.av-stats__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
}
.av-stats__label {
  font-family: var(--av-font);
  font-size: var(--av-h3-size);
  font-weight: var(--av-h3-weight);
  line-height: var(--av-h3-height);
  color: var(--av-accent-1);
  margin: 0;
}
.av-stats__learn {
  align-self: flex-start;
}
.av-stats__cards {
  align-items: stretch;
}
.av-stat-card {
  background-color: #fff;
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  backdrop-filter: saturate(180%) blur(40px);
  border-radius: var(--av-border-radius);
  padding: 7vh 30px 0;
  min-height: 550px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.av-stat-card__spacer {
  flex: 1;
  min-height: 1rem;
}
.av-stat-card__label {
  font-size: 1rem;
  color: var(--av-body-text);
  display: block;
  margin-bottom: 0.25rem;
}
.av-stat-card__number {
  font-family: var(--av-font);
  font-size: var(--av-h3-size);
  font-weight: var(--av-h3-weight);
  line-height: var(--av-h3-height);
  color: var(--av-accent-1);
  margin: 0;
}
.av-stat-card__imgs {
  margin-top: auto;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 1rem;
}
.av-stat-card__imgs img {
  width: 100%;
  max-width: 281px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.av-assets-3-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  z-index: -1;
}

 @media (max-width: 1200px) {
  .av-hero {
    flex-direction: column;
    align-items: stretch;
  }
  .av-hero__content {
    width: 100%;
  }
  .av-hero-counter {
    flex-direction: column;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 1.5rem;
  }
 }


/* ----- Features (Neler Sağlıyoruz) – gradient + kartlar ----- */
.av-features {
  padding: 5rem 0;
}
.av-features--gradient {
    background-color: transparent;
    background-image: linear-gradient(180deg, #F6F5F2 0%, #FFFFFF 100%);}
.av-features__heading {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 0.25rem;
}
.av-features__divider {
  width: 80px;
  height: 3px;
  background-color: var(--av-accent-4);
  margin-top: 0.5rem;
}
.av-feature-card {
  background-color: transparent;
  background-image: linear-gradient(135deg, #FFFFFF17 0%, #5CC3DC1F 100%);
  border-radius: var(--av-border-radius);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
}
.av-feature-card__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #5CC3DC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1rem;
}
.av-feature-card__title {
  font-family: var(--av-font);
  font-size: var(--av-h5-size);
  font-weight: var(--av-h5-weight);
  line-height: var(--av-h5-height);
  color: var(--av-accent-1);
  margin-bottom: 0.5rem;
}
.av-feature-card__text {
  font-size: var(--av-body-size);
  line-height: var(--av-body-height);
  color: var(--av-body-text);
  margin: 0;
}

.av-features {
  border-radius: 24px!important;
  overflow: hidden!important;
}
/* ----- Overview ----- */
.av-overview-area {
  background-color: #fff;
}

.av-overview {
  padding: 15vh 0;
  background-color: #2C2C53;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.av-overview img {
  position: absolute;
  bottom: -50px;
  left: -250px;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  opacity: 0.1;
}
.av-overview__label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  color: white;
  margin-bottom: 1rem;
  padding: 5px 20px 5px 20px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-8641245);
    border-radius: 16px 16px 16px 16px;
}
.av-overview__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: white;
  margin-bottom: 1rem;
}
.av-overview__accent {
  color: var(--av-accent-4);
}
.av-overview__cta {
  margin-bottom: 2rem;
  margin-top: 4rem;
  background-color: var(--av-btn-secondary-bg);
  color: var(--av-btn-secondary-text) !important;
}
.av-overview__cta:hover {
  background-color: var(--av-btn-secondary-hover-bg);
  color: var(--av-btn-secondary-hover-text) !important;
}
.av-overview__text p {
  font-size: var(--av-body-size);
  line-height: 1.5em;
  color: white;
  margin-bottom: 1rem;
}

/* ----- How it works ----- */
.av-how {
  padding: 5rem 0;
}
.av-how__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 2rem;
}
.av-how-card {
  display: block;
  background-color: rgb(246, 245, 242);
  border-radius: var(--av-border-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.av-how-card:hover {
  transform: translateY(-4px);
  color: inherit;
  background-color: #5CC3DC;
}
.av-how-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0 1.5rem;
  border-radius: 24px 24px 0px 2px;
}

/* wavy-circle: görsel, assets/images/bg-5.png şekliyle maskelenir */
.av-how-card__img--top .wavy-circle {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.av-how-card__img--top .wavy-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-how-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0px 2px;
}
.av-how-card__img--top img {
  border-radius: 0 0 24px 24px;
}
.av-how-card__content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.av-how-card__content-inner {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.av-how-card__label {
  font-size: 22px;
  line-height: 1.3em;
  color: #2C2C53;
}

.av-how-card__desc {
  font-size: var(--av-body-size);
  line-height: 1.4em;
  color: var(--av-body-text);
  margin: 0;
}
.av-how-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: var(--av-accent-1);
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}
.av-how-card:hover .av-how-card__icon {
  background-color: var(--av-accent-1);
  color: #5CC3DC;
}

/* ----- Tabs (Herkes İçin) ----- */
.av-tabs-section {
  padding: 5rem 0;
  background-color: #fff;
}
.av-tabs-section__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 2rem;
}
.av-tabs .nav-link {
  font-family: var(--av-font);
  font-weight: 500;
  color: var(--av-body-text);
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 1.5rem;
}
.av-tabs .nav-link:hover {
  color: var(--av-accent-1);
}
.av-tabs .nav-link.active {
  color: var(--av-accent-1);
  background: transparent;
  border-bottom-color: var(--av-btn-hover-bg);
}
.av-tab-content {
  padding-top: 2rem;
}
.av-tab-card {
  background-color: var(--av-accent-3);
  border-radius: var(--av-border-radius);
  padding: 2.5rem 50px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.av-tab-card__icon {
  font-size: 2rem;
  color: var(--av-btn-hover-bg);
  margin-bottom: 1rem;
}
.av-tab-card__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  color: var(--av-accent-1);
  margin-bottom: 1rem;
}
.av-tab-card__text {
  font-size: var(--av-body-size);
  line-height: 1.5em;
  color: var(--av-body-text);
  margin-bottom: 1.5rem;
}

/* ----- FAQ ----- */
.av-faq {
  padding: 5rem 0;
}
.av-faq__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 1rem;
}
.av-faq__cta {
  margin-bottom: 1rem;
}
.av-accordion-item {
  background: #fff;
  border: none;
  border-radius: 12px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.av-accordion-item__btn {
  font-family: var(--av-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--av-accent-1) !important;
  background: #fff !important;
  padding: 1rem 1.25rem;
}
.av-accordion-item__btn:not(.collapsed) {
  box-shadow: none;
}
.av-accordion-item__body {
  font-size: var(--av-body-size);
  line-height: 1.7;
  color: var(--av-body-text);
  padding: 1rem 1.25rem;
}



.av-accordion-item {
  box-shadow: none !important;
}

.av-accordion-item .accordion-header {
  border-style: solid;
    border-width: 0px 0px 0.5px 0px;
    border-color: #0000001A ;
    padding-bottom: 15px;
}

.av-faq__cta {
  background-color: var(--av-btn-bg);
}
.av-faq__cta:hover {
  background-color: var(--av-btn-hover-bg);
  color: var(--av-btn-hover-text) !important;
}

/* ----- Blog ----- */
.av-blog-section {
  padding: 15vh 0;
  background-color: #F6F5F2;
}
.av-blog-section__title {
  font-family: var(--av-font);
  font-size: var(--av-h2-size);
  font-weight: var(--av-h2-weight);
  line-height: var(--av-h2-height);
  letter-spacing: var(--av-h2-spacing);
  color: var(--av-accent-1);
  margin-bottom: 0;
}
.av-blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.av-blog-card__link:hover {
  color: var(--av-accent-1);
}
.av-blog-card__img {
  aspect-ratio: 1024/658;
  overflow: hidden;
  border-radius: var(--av-border-radius);
  margin-bottom: 1rem;
}
.av-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.av-blog-card__link:hover .av-blog-card__img img {
  transform: scale(1.03);
}
.av-blog-card__title {
  font-family: var(--av-font);
  font-size: var(--av-h4-size);
  font-weight: var(--av-h4-weight);
  line-height: var(--av-h4-height);
  color: var(--av-accent-1);
  margin: 0;
}

.av-blog__cta {
  background-color: var(--av-btn-bg);
}
.av-blog__cta:hover {
  background-color: var(--av-btn-hover-bg);
  color: var(--av-btn-hover-text) !important;
}

/* ----- Wave Divider ----- */
.av-wave-divider {
  background-color: var(--av-accent-3);
  line-height: 0;
  overflow: hidden;
}
.av-wave-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* ----- Certifications & Integrations ----- */
.av-certs-block {
  padding: 1rem 0;
}

.av-cert-track-wrapper {
  overflow: hidden;
}

.avCertSwiper .swiper-slide {
  width: auto !important;
}

.av-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid rgba(92, 195, 220, 0.5);
  border-radius: 100px;
  background: #fff;
  white-space: nowrap;
  transition: border-color 0.25s, background 0.25s;
  cursor: default;
}

.av-cert-badge:hover {
  border-color: var(--av-accent-2);
  background: var(--av-accent-3);
}

.av-cert-badge i {
  color: var(--av-accent-2);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.av-cert-badge__name {
  font-family: var(--av-font);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--av-accent-1);
  letter-spacing: 0.2px;
}

.av-cert-badge__year {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}

.avIntegSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avIntegSwiper .swiper-slide img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.25s;
}

.avIntegSwiper .swiper-slide img:hover {
  opacity: 1;
}

/* ----- Contact ----- */
.av-contact-section {
    padding: 5rem 0;
    background-color: var(--av-accent-3);
    overflow: hidden;
}

.av-contact__title {
    font-family: var(--av-font);
    font-size: var(--av-h2-size);
    font-weight: var(--av-h2-weight);
    line-height: var(--av-h2-height);
    letter-spacing: var(--av-h2-spacing);
    color: var(--av-accent-1);
    margin-bottom: 0.5rem;
}

.av-contact__subtitle {
    font-size: var(--av-body-size);
    color: rgba(0,0,0,0.55);
    margin-bottom: 0;
}

.av-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.av-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: var(--av-border-radius);
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.25s;
}

.av-contact-info__item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.av-contact-info__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--av-accent-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.av-contact-info__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.av-contact-info__label {
    font-family: var(--av-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
}

.av-contact-info__text a,
.av-contact-info__text span {
    font-size: 15px;
    font-weight: 500;
    color: var(--av-accent-1);
    text-decoration: none;
    line-height: 1.4;
}

.av-contact-info__text a:hover {
    color: var(--av-accent-2);
}

.av-contact-form-card {
    background: #fff;
    border-radius: var(--av-border-radius);
    padding: 2.5rem;
    position: relative;
    min-height: 460px;
    perspective: 1000px;
}

.av-contact-form-card h4 {
    font-family: var(--av-font);
    font-size: var(--av-h4-size);
    font-weight: var(--av-h4-weight);
    color: var(--av-accent-1);
    margin-bottom: 0.4rem;
}

.av-contact-form-card > .form-content > p {
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    margin-bottom: 1.75rem;
}

.av-contact-form-card .form-content,
.thank-you-message {
    backface-visibility: hidden;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.thank-you-message {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transform: rotateY(180deg);
}

.thank-you-message__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--av-btn-hover-bg);
    color: var(--av-accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.thank-you-message h3 {
    font-family: var(--av-font);
    font-size: var(--av-h4-size);
    font-weight: 600;
    color: var(--av-accent-1);
    margin-bottom: 0.5rem;
}

.thank-you-message p {
    font-size: 15px;
    color: rgba(0,0,0,0.55);
}

.av-contact-form-card.flipped .form-content {
    transform: rotateY(180deg);
}

.av-contact-form-card.flipped .thank-you-message {
    transform: rotateY(0deg);
}

.av-contact-input {
    width: 100%;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: var(--av-font);
    font-size: 15px;
    color: var(--av-accent-1);
    background: var(--av-accent-3);
    outline: none;
    transition: border-color 0.2s;
}

.av-contact-input:focus {
    border-color: var(--av-accent-2);
    background: #fff;
}

.av-contact-input::placeholder {
    color: rgba(0,0,0,0.35);
}

textarea.av-contact-input {
    resize: none;
    height: 120px;
}

.iti {
    width: 100%;
}

.iti__tel-input {
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0.75rem 1rem 0.75rem 52px;
    font-family: var(--av-font);
    font-size: 15px;
    color: var(--av-accent-1);
    background: var(--av-accent-3);
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.iti__tel-input:focus {
    border-color: var(--av-accent-2);
    background: #fff;
}

.av-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: var(--av-btn-padding);
    background-color: var(--av-btn-bg);
    color: var(--av-btn-text);
    font-family: var(--av-font);
    font-size: var(--av-btn-size);
    font-weight: var(--av-btn-weight);
    border-radius: var(--av-btn-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.25s, color 0.25s, opacity 0.2s;
    width: 100%;
    justify-content: center;
}

.av-contact-submit:hover:not(:disabled) {
    background-color: var(--av-btn-hover-bg);
    color: var(--av-btn-hover-text);
}

.av-contact-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.av-contact-submit .btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: av-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes av-spin {
    to { transform: rotate(360deg); }
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ----- Footer ----- */
.av-footer {
  padding: 0;
  background-color: #fff;
  color: #2C2C53;
}
.av-footer__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.av-footer__brand {
  margin-bottom: 1rem;
}
.av-footer__logo {
  max-width: 60%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
.av-footer__tagline {
  font-size: var(--av-body-size);
  line-height: var(--av-body-height);
  color: #2C2C53;
  margin: 0;
}
.av-footer__heading {
  font-size: var(--av-nav-size);
  font-weight: var(--av-nav-weight);
  letter-spacing: var(--av-nav-spacing);
  color: #2C2C53;
  margin: 0 0 1rem;
}
.av-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.av-footer__list li {
  font-size: var(--av-body-size);
  line-height: 1.6;
  color: #2C2C53;
  margin-bottom: 0.35rem;
}
.av-footer__list a {
  color: #2C2C53;
  text-decoration: none;
}
.av-footer__list a:hover {
  color: var(--av-btn-hover-bg);
}
.av-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.av-footer__contact .bi {
  flex-shrink: 0;
  margin-top: 0.2em;
}
.av-footer__bottom {
  margin: 0;
}
.av-footer__copyright {
  font-size: var(--av-body-size);
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
}
.av-footer__social .av-social__link {
  color: #fff;
  margin-left: 0.75rem;
}
.av-footer__social .av-social__link:hover {
  color: var(--av-btn-hover-bg);
}

.av-banner-area-section {
  position: relative;
  height: 100vh;
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}
.av-banner-area-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.av-banner-area-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.av-banner-area-section  h2 {
  font-family: "Montserrat", var(--av-font), sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1em;
  color: #fff;
  margin-bottom: 0;
  text-align: center;    
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .av-banner-area-section {
      height: max-content !important;
  }
}

.av-banner-area-item {
  background: #FFFFFFCC;
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.av-banner-area-item .av-banner-area-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.av-banner-area-item .av-banner-area-head  span {
  display: inline-block;
  padding: 5px 20px 5px 20px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0000001A;
    border-radius: 16px 16px 16px 16px;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1.8em;
    letter-spacing: -0.2px;
    color: #2C2C53;
    font-weight: 500;
}

.av-banner-area-item .av-banner-area-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.av-banner-area-item .av-banner-area-body h4 {
  font-size: 22px;
  font-weight: 600;
  color: #2C2C53;
  line-height: 1.2em;
  line-height: 0.5px;
}
.av-banner-area-item .av-banner-area-body p {
  font-style: 16px;
  line-height: 1.4em;
  color: #2C2C53;
  margin-top: 30px;
  margin-bottom: 30px;
  flex: 1;
}
.av-banner-area-item .av-banner-area-body a {
  background-color: #2C2C53;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.2px;
  text-decoration: none;
  color: white;
  border-radius: 100px 100px 100px 100px;
  padding: 16px 24px 16px 24px;
  transition: .3s ease-in-out all;
  align-self: flex-start;
}
.av-banner-area-item .av-banner-area-body a:hover {
  background-color: #5CC3DC;
  color: #2C2C53;
}
/* Scroll to top – orijinal vamtam-scroll-to-top gibi */
.av-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--av-accent-1);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s, color 0.2s;
}
.av-scroll-top:hover {
  background-color: var(--av-btn-hover-bg);
  color: var(--av-btn-hover-text);
}

/* ----- Animations ----- */
.av-animate {
  opacity: 0;
}
.av-animate.av-animated {
  opacity: 1;
}
.av-animated.av-animate-fadeIn {
  animation: avFadeIn 0.6s ease forwards;
}
.av-animated.av-animate-fadeInUp {
  animation: avFadeInUp 0.6s ease forwards;
}
.av-animated.av-animate-slideInUp {
  animation: avSlideInUp 0.6s ease forwards;
}
.av-animated.av-animate-fadeInRight {
  animation: avFadeInRight 0.6s ease forwards;
}
.av-animated.av-animate-zoomIn {
  animation: avZoomIn 0.5s ease forwards;
}

@keyframes avFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes avFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes avSlideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes avFadeInRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes avZoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ----- Responsive – tema breakpoint (1024, 767) ----- */
@media (max-width: 1024px) {
  :root {
    --av-h1-size: 38px;
    --av-h2-size: 34px;
    --av-h3-size: 23px;
    --av-h4-size: 20px;
    --av-h5-size: 18px;
    --av-h6-size: 16px;
  }
  .av-hero {
    min-height: 75vh;
    margin-bottom: 60px;
  }
  .av-hero__inner {
    min-height: auto;
  }
  .av-stats {
    margin-top: -8vh;
    padding-bottom: 60px;
  }
  .av-stat-card {
    min-height: 400px;
    padding: 60px 20px 0;
  }
  .av-header .container,
  .av-hero .container,
  .av-stats .container,
  .av-stats__container,
  .av-features .container,
  .av-overview .container,
  .av-how .container,
  .av-tabs-section .container,
  .av-faq .container,
  .av-blog-section .container,
  .av-footer .container {
    padding-left: var(--av-container-padding-mobile);
    padding-right: var(--av-container-padding-mobile);
  }
}
@media (max-width: 767px) {
  :root {
    --av-h1-size: 32px;
    --av-h1-height: 1.2em;
    --av-h2-size: 28px;
    --av-h2-height: 1.3em;
    --av-h3-size: 21px;
    --av-h4-size: 19px;
    --av-h5-size: 17px;
    --av-h6-size: 15px;
  }
  .av-hero {
    min-height: 75vh;
    margin-bottom: 40px;
  }
  .av-stats {
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: 40px;
  }
  .av-stat-card {
    min-height: 150px;
    padding: 40px 20px 0;
    gap: 20px;
  }
  .av-stat-card__imgs {
    flex-direction: row;
    justify-content: center;
  }
  .av-stat-card__imgs img {
    max-width: 80px;
  }
  .av-features,
  .av-overview,
  .av-how,
  .av-tabs-section,
  .av-faq,
  .av-blog-section {
    padding: 3rem 0;
  }
  .av-tab-card {
    padding: 2rem 20px;
    min-height: 300px;
  }
  .av-hero__subtitle,
  .av-hero__title {
    font-size: 36px;
  }
  .av-banner-area-section h2 {
    font-size: 28px;
  }
  .av-hero-counter-assets .mid-area-custom .text-area p {
    font-size: 22px;
  }
}


.av-footer-custom h4 {
  font-size: 22px; 
  text-align: center;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}


.av-lang__toggle {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.av-lang__toggle::after {
  margin-left: 6px;
}

.av-lang .dropdown-menu {
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: none;
}

.av-lang .dropdown-item {
  padding: 8px 16px;
  font-size: 14px;
}

.av-lang .dropdown-item:hover {
  background-color: #f5f5f5;
}

.av-sertifika-area {
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.sertifika-slider-wrapper {
  overflow: hidden;
}
.avSertifikaSwiper {
  padding: 20px 0;
}

.avSertifikaSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.avSertifikaSwiper img {
  max-height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.avSertifikaSwiper img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Scoped to .av-footer only — do NOT target generic footer (MVC layout footer would break) */
.av-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

