/* SLIDER GENEL WRAPPER – ORTADA VE GENİŞ */
.custom-slider-wrapper {
  max-width: 1280px;     /* Öncekinden daha geniş */
  margin: 0 auto;
  padding: 0 20px;       /* Kenarlarda boşluk */
}

/* Slider kutusu */
.custom-centered-carousel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  position: relative;
}

/* SLIDE YAPISI */
.custom-slide {
  position: relative;
  min-height: 430px;           /* Yükseklik artırıldı */
}

/* Arka plan görseli */
.custom-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hafif koyu overlay, daha profesyonel görünüm */
.custom-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25)
  );
}

/* Metin alanı */
.custom-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 520px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Daha profesyonel tipografi */
.custom-slide-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
}

.custom-slide-content p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 480px;
}

/* OKLAR: küçük yuvarlak ve sadece hover’da görünür */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 0;                     /* Başta görünmesin */
  transition: opacity 0.25s ease;
}

.custom-slider-wrapper:hover .carousel-control-prev,
.custom-slider-wrapper:hover .carousel-control-next {
  opacity: 1;                     /* Slider üzerine gelince ortaya çık */
}

/* Küçük yuvarlak ok ikonları */
.custom-arrow-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  background-size: 55% 55%;       /* Ok ikonunu biraz küçült */
}

/* İndikatörler (nokta) */
.carousel-indicators {
  margin-bottom: 12px;
}

.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.55);
}

.carousel-indicators .active {
  width: 26px;
  background-color: #fff;
}

/* Mobil uyum */
@media (max-width: 767.98px) {
  .custom-slider-wrapper {
    padding: 0 10px;
  }

  .custom-slide {
    min-height: 360px;
  }

  .custom-slide-content {
    padding: 24px 20px;
    max-width: 100%;
  }

  .custom-slide-content h2 {
    font-size: 1.6rem;
  }

  .custom-slide-content p {
    font-size: 0.95rem;
  }
}







.media-style1.layout2 .media-label {
    font-size: 40px!important;
}

section.merak-ettikleriniz {
    padding: 90px 0;
}

.gallery-imgx img {
    width: 100%;
}

.gallery-table {
    border: 1px solid #dddddd;
    border-radius: 30px;
    padding: 30px;
}

.social-links4 li.yellow {
    color: #ffe200 !important;
    font-weight: bold;
}

.header-logo2 img {
    width: 200px;
}

.subeler-gorsel img {
	width:200px;
}

#metaslider-id-126 {
    width: 100% !important;
}


.team-listed {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.team-listed img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-listed-title {
    position: relative;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-family: sans-serif;
    margin: 0;
    font-size: 13px;
}

.team-listed-name {
    top: 0;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    position: relative;
    padding: 10px;
    text-align: center;
    margin: 0;
}

.space, .space-top {
    padding-top: 40px;
}

.footer-widget .footer-menu ul {
    display: grid;
    grid-template-columns: none;
}

.transform-banner img {
    animation: border-transform 20s linear infinite alternate forwards;
    border-radius: 100%;
    width: auto;
}

.banner-buttons-row {
  display: flex;
  gap: 16px; /* Butonlar arası boşluk */
  width: 100%;
  margin: 0 auto 24px auto;
}

.vs-btn.banner.basvuru-butonu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  font-size: 20px;
  font-weight: bold;
  background: #ff512f;
  color: #fff !important;
  border-radius: 30px;
  text-decoration: none !important;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  box-sizing: border-box;
}
.vs-btn.banner.basvuru-butonu:nth-child(2) {
  background: #1fa2ff;
}
.vs-btn.banner.basvuru-butonu:hover {
  background: #dd2476;
}
.vs-btn.banner.basvuru-butonu:nth-child(2):hover {
  background: #007cf0;
}
.pulse {
  display: inline-block;
  animation: pulse-animation 1s infinite;
}
@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.13);
  }
  100% {
    transform: scale(1);
  }
}
/* Mobilde alt alta göster */
@media (max-width: 768px) {
  .banner-buttons-row {
    flex-direction: column;
    gap: 10px;
  }
  .vs-btn.banner.basvuru-butonu {
    font-size: 16px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 20px;
  }
}

.cocuk-atolyesi-slogan {
    font-weight: bold;
    font-size: 26px;
    color: #ff3928;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #6d3bd5;
    color: #ffffff;
    font-weight: bold;
    font-size: 21px;
}

.blog-content input {
    border: 1px solid #ff3928;
}

@media (max-width: 767px) {
    h1.bayilik-title {
        font-size: 24px;
    }
    .bayilik-wrapper {
        padding-top: 30px;
    }	
}






.franchise-banner {
  background: linear-gradient(-45deg, #fd5f49, #5d1fb3, #fd5f49, #5d1fb3);
  background-size: 400% 400%;
  animation: gradientFlow 10s ease infinite;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.franchise-banner-container {
  max-width: 900px;
  margin: auto;
}

.franchise-banner-heading {
    display: block;
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
    padding: 0;
}

.franchise-banner-subtitle {
  font-style: italic;
  font-size: 20px;
  color: #1e4b45;
  margin-bottom: 30px;
}

@keyframes pulseText {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.franchise-banner-button {
    display: inline-block;
    background-color: #ffffff;
    color: #5d1fb3;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: pulseText 2s ease-in-out infinite;
    margin: 20px 0 0;
}

.franchise-banner-button:hover {
  background-color: #eee;
  color: #fd5f49;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation-play-state: paused; /* hover'da animasyonu durdurmak istersen */
}

h1.bayilikh1 {
    margin: 0;
    padding: 0;
    font-size: 40px;
    font-family: "Jost", sans-serif;
    color: #ffe200;
}

.franchise-banner2 {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.franchise-banner-heading2 {
    display: block;
    color: #333333;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
    padding: 0;
}




.franchise-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 30px 20px;
    color: white;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 20px rgb(175 175 175);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid #6816ba;
}

.franchise-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgb(109 59 213);
    transition: transform 0.3s ease;
    border: 2px solid #fb6049;
}

.franchise-card p {
    color: #000000;
    margin: 0;
}

.franchise-btn {
    background-color: #6816ba;
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

    .franchise-btn:hover {
      background-color: #fb6049;
      transform: scale(1.05);
	  color:#ffffff;
    }

.kiralama-butonu {
	margin:50px 0;
}

.partner-section {
  background-color: #710fc4;
}

.partner-text {
}

.partner-title {
    font-weight: 800;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffd600;
}

.partner-description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ffffff;
}

.partner-btn {
    border: 2px solid #000;
    color: #ffffff;
    background-color: #ff3928;
    padding: 10px 25px;
    font-weight: 300 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px !important;
}

.partner-btn:hover {
  background-color: #000;
  color: #fff;
}

.partner-image {
  padding: 0;
  margin: 0;
  height: 100%;
}

.partner-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}





.yt-wrapper {
  width: 100vw;
  height: 600px; /* sabit yükseklik */
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.yt-wrapper iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 1080px;
  pointer-events: none; /* arka plan videoda tıklama olmasın */
  border: none;
}

/* ——— Overlay (video üstü) ——— */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
}

/* Dönen rozet */
.spin-badge-svg { width: 220px; height: 220px; }
.spin { animation: spin 18s linear infinite; transform-origin: 50% 50%; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .spin { animation: none; }
}

/* CTA butonları */
.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: saturate(140%) blur(2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* PDF: açık arka plan */
.btn-primary {
  color: #0f172a;
  background: rgba(255,255,255,0.92);
  border-color: rgba(15,23,42,0.1);
}

/* Başvur: vurucu degrade */
.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, #fd5f49 0%, #5d1fb3 100%);
  border: none;
}

/* Videoyu izle: saydam */
.btn-ghost {
    color: #000000;
    background: #dddddd;
    border-color: rgba(255, 255, 255, 0.35);
}

/* Mobil yerleşim */
@media (max-width: 768px) {
  .hero-content { flex-direction: column; gap: 18px; }
  .spin-badge-svg { width: 200px; height: 200px; }
  .cta-group { width: 100%; }
  .btn { flex: 1 1 auto; width: 100%; }
}

/* ——— Modal ——— */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed; inset: 0; z-index: 50;
  display: grid; place-items: center;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: transparent;
}
.modal-dialog {
  position: relative;
  background: #0b1020;
  border-radius: 16px;
  max-width: 960px;
  width: 92vw;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  overflow: hidden;
}
.modal-close {
  position: absolute; top: 8px; right: 10px;
  background: rgba(255,255,255,0.12);
  border: 0;
  width: 36px; height: 36px;
  color: #fff; font-size: 22px; line-height: 1;
  border-radius: 999px; cursor: pointer;
}
.modal-body { position: relative; width: 100%; padding-top: 56.25%; }
.modal-body iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
}

/* Erişilebilirlik yardımcı sınıfı */
.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); border:0; white-space:nowrap;
}




.middle-section {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

/* Videonun üzerine taşıma */
.overlap-section {
  margin-top: 35px;
  z-index: 10;
  opacity: 0.8;
}

/* Arka plandaki video'nun altına kaçmaması için */
.top-video {
  position: relative;
  z-index: 1;
}

.middle-section .table {
  font-size: 15px;
}

.bottom-images img {
  height: 100%;
  object-fit: cover;
  display: block;
}

.slogan-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* satırlar arası boşluk */
  padding: 20px 0;
}

.klasik-slogan {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/* Ortadaki slogan için animasyon */
.klasik-animasyon {
  font-size: 24px;
  font-weight: 700;
  animation: pulse 2s infinite;
  color: #d90000;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.klasik-cedgo-basvuru {
  text-align: center;
  margin-top: 20px; /* opsiyonel */
}

.yatirimci-video {
  max-width: 100%;
  width: 980px;
  height: 552px;
  border: none;
  display: inline-block;
}

h2.sec-title.klasik-cedgoh2 {
    font-size: 47px;
    text-align: center;
}

.franchise-info-text {
  text-align: center;
}

.franchise-steps .step-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.franchise-steps h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.franchise-steps h5 span {
  font-weight: 400;
  font-size: 14px;
  color: #999;
}

.franchise-steps p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}





#bayilik-firsat {
  width: 100%;
  background: linear-gradient(-45deg, #ff512f, #dd2476, #1fa2ff, #a8ff78);
  background-size: 400% 400%;
  animation: gradientBG 8s ease-in-out infinite;
  height: 50px;
  font-size: 30px;
  position: relative;
  z-index: 999;
  overflow: hidden;

  /* Eklenenler: her şeyi tam ortaya al ve simetrik boşluk ver */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  text-align: center;
}

/* Bootstrap'in me-3 boşluğunu iptal et, gap kullanıyoruz */
#bayilik-firsat .me-3 { margin-right: 0 !important; }

/* Yazı ve butonların taşmasını engelle */
#bayilik-firsat > a {
  letter-spacing: 1px;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* Butonun fazla genişlemesini engelle ve derli toplu yap */
#bayilik-firsat .bilgi-al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;        /* olası width:100%'leri ez */
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 16px;               /* konteynerin 30px fontunu devralıp dev gibi olmaması için */
  line-height: 1.2;
  padding: 6px 16px;             /* HTML’de verdiğin değeri koru */
  border-radius: 18px;
  transition: background 0.3s, color 0.3s;
}

#bayilik-firsat .bilgi-al-btn:hover,
#bayilik-firsat .bilgi-al-btn:focus {
  background: #fff7e0 !important;
  color: #ff512f !important;
}

/* Mobilde daha sıkı düzen */
@media (max-width: 768px) {
  #bayilik-firsat {
    font-size: 18px;
    height: 40px;
    gap: 8px;
  }
  #bayilik-firsat .bilgi-al-btn {
    padding: 3px 10px;
    font-size: 13px;
  }
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}




/* Modal gizliyken tamamen kapat */
.ik-sayfasi .modal:not(.show) {
  display: none !important;
}

/* Gizliyken tıklamayı geçir, görünürken normal çalış */
.ik-sayfasi .modal { pointer-events: none; }
.ik-sayfasi .modal.show { pointer-events: auto; }
.ik-sayfasi .modal-body {padding-top:0;}










/* === CedGo: Bayilik Partner Bölümü (temiz) === */
.cedgo-bayilik-partner{
  --cbp-bg1:#f6f7fb;
  --cbp-primary:#6b4df6;
  --cbp-accent:#ff4d4f;
  --cbp-dark:#2a2a2a;
  background:linear-gradient(180deg,#fff 0%,var(--cbp-bg1) 100%);
}

.cedgo-bayilik-partner .cbp-title{
  font-weight:800; letter-spacing:.2px; color:var(--cbp-dark); margin-bottom:.25rem;
}
.cedgo-bayilik-partner .cbp-lead{ max-width:820px; margin:0 auto; color:#5a5f6d; }

.cedgo-bayilik-partner .cbp-block{
  position:relative; background:#fff; border-radius:18px;
  padding:1.25rem; margin-bottom:1.25rem;
  box-shadow:0 8px 24px rgba(31,38,135,.08);
}
@media (min-width:768px){
  .cedgo-bayilik-partner .cbp-block{ padding:2rem; margin-bottom:2rem; }
}

.cedgo-bayilik-partner .cbp-h2{
  font-size:clamp(1.25rem,1.1rem + 1vw,1.75rem);
  font-weight:700; margin-bottom:.5rem; color:var(--cbp-dark);
}
.cedgo-bayilik-partner p{ color:#4b4f59; line-height:1.7; margin-bottom:.75rem; }

/* === Görsel kutusu: dört yanda eşit boşluk === */
.cedgo-bayilik-partner .cbp-figure{
  position:relative; overflow:hidden; border-radius:16px;
  /* merkezden başlayan degrade: dört tarafta eşit görünür */
  background:radial-gradient(120% 120% at 50% 50%,
             rgba(107,77,246,.12) 0%, rgba(255,77,79,.08) 100%);
  padding:.35rem;                    /* eşit iç boşluk */
  max-width:360px;                   /* masaüstünde kompakt */
  margin-left:auto; margin-right:auto;
  box-shadow:inset 0 0 0 1px rgba(107,77,246,.06);
}
.cedgo-bayilik-partner .cbp-figure img{
  display:block; width:100%; height:auto; border-radius:12px;
}

@media (max-width:991.98px){
  .cedgo-bayilik-partner .cbp-figure{ max-width:320px; }
}
@media (max-width:575.98px){
  .cedgo-bayilik-partner .cbp-figure{ max-width:280px; }
  .cedgo-bayilik-partner .cbp-figure{ padding:.3rem; } /* telefonda biraz daha sıkı */
}

/* Buton */
.cedgo-bayilik-partner .cbp-btn{
  background:var(--cbp-primary); border:0; padding:.75rem 1.25rem;
  border-radius:999px; font-weight:600;
}
.cedgo-bayilik-partner .cbp-btn:hover{ background:#5a3df0; }

/* Sol kenar vurgusu */
.cedgo-bayilik-partner .cbp-block::before{
  content:""; position:absolute; inset:0 auto 0 0; width:6px;
  background:linear-gradient(180deg,var(--cbp-primary),var(--cbp-accent));
  border-top-left-radius:18px; border-bottom-left-radius:18px; opacity:.15;
}

/* Mobil boşluk */
@media (max-width:767.98px){
  .cedgo-bayilik-partner .cbp-figure{ margin-bottom:1rem; }
}






.header-top5 {
    background-color: #fb6049;
    padding: 11px 0 8px;
}



.sticky-wrap {
    margin: 20px 0;
}



.footer-layout3, .footer-layout1 {
    background-color: #fb6049;
    --title-color: #FFFFFF;
    --body-color: #FFFFFF;
}






.cedgostage-hizmetler {
    margin: 100px 0;
}


.service-shape1 {
    background: #6816ba !important;
}

.service-shape3 {
    background: #fb6049 !important;
}