* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--white-color);
}

.ratio-16x9 {
  background-color: var(--black-color);
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video,
.hero-fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

#branchCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdd600' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.146a.5.5 0 0 1 0 .708L5.207 8l6.147 6.146a.5.5 0 0 1-.708.708l-6.5-6.5a.5.5 0 0 1 0-.708l6.5-6.5a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

#branchCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdd600' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.146a.5.5 0 0 1 .708 0l6.5 6.5a.5.5 0 0 1 0 .708l-6.5 6.5a.5.5 0 0 1-.708-.708L10.793 8 4.646 1.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

#celebCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdd600' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.146a.5.5 0 0 1 0 .708L5.207 8l6.147 6.146a.5.5 0 0 1-.708.708l-6.5-6.5a.5.5 0 0 1 0-.708l6.5-6.5a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

#celebCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fdd600' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.146a.5.5 0 0 1 .708 0l6.5 6.5a.5.5 0 0 1 0 .708l-6.5 6.5a.5.5 0 0 1-.708-.708L10.793 8 4.646 1.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next {
  right: -5.5rem;
}

.carousel-control-prev {
  left: -5.5rem;
}

section.py-5>.container>div {
  padding: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black-color);
}

.bg-light {
  background-color: var(--main-color);
}

section.py-5>.container>div+div {
  margin-top: 1.5rem;
}

.section-heading {
  display: table;
  margin: 2rem auto 3rem;
  position: relative;
  font-weight: 600;
  font-size: 2.75rem;
  color: var(--black-color);
}


  .hero-section {
  background: url('/public/img/subeler/atakoy3.webp') no-repeat center center / cover;
  height: 75vh;
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}
.card-text {
  color: var(--white-color);
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.863);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    width: 100%; 
    padding: 2rem 1rem;
    border-radius: 0; 
  }

  .hero-section .container {
    padding: 0;
  }

  .info-card {
    margin-bottom: 1.5rem;
  }

  .info-card .card-body {
    padding: 1.25rem;
    font-size: 1rem;
  }
}

/* about */

 .banner-slider-section {
    padding: 40px 0;
    background-color: var(--white-color);
  }

  .slider-text-box {
    width: 200px;
    min-width: 200px;
    height: 300px;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 20px;
  }

.section-small-banners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
  text-transform: uppercase;
}

.section-small-banners .caption-box {
  color: var(--black-color);
  flex: 0 0 auto;
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--main-color);
  padding: 1rem;
  font-weight: bold;
  text-align: center;
}

.section-small-banners .banners-wrapper {
  flex: 1 1 70%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-small-banners .banners-wrapper .banner-item {
  flex: 1;
  text-align: center;
  border-radius: 0.25rem;
  overflow: hidden;
}

.section-small-banners .banners-wrapper .banner-item .img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 0.25rem;
}

.section-small-banners .banners-wrapper .banner-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}

.section-small-banners .banners-wrapper .banner-item:hover img {
  transform: scale(1.1);
}

.section-small-banners .banners-wrapper .banner-item h6 {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}


.slide-caption {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
  }

.slide-caption::after {
    content: ' >';
    color: var(--main-color);
  }

@media (max-width: 768px) {
    .slider-text-box {
      display: none;
    }
  }


.video-section-wrapper {
  background-color: #000;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4rem 0;
  color: #fff;
  z-index: 0;
}
.stripes {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #FFF105,
    #FFF105 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
  opacity: 0.7; /* isteğe bağlı: görünürlüğü azalt */
  pointer-events: none;
}

.stripes-left {
  left: -25px;
}

.stripes-right {
  right: -25px;
}


/* Ortadaki blur görsel */
.blur-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; /* ihtiyaca göre değiştir */
  filter: blur(10px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}


/* app */

.phone-frame {
  width: 260px;
  height: 545px;
  border-radius: 4rem;
  border: 5px solid var(--black-color);
  background-color: var(--white-color);
  box-shadow: 0 0 0 25px var(--black-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.app-icon {
  width: 60px;
  height: auto;
}
.app-btn {
  background-color: var(--black-color);
  color: var(--white-color);
  text-decoration: none;
  border-radius: 6px;
}
.app-btn:hover {
  background-color: var(--main-color);
  color: var(--black-color); 
}

@media (max-width: 768px) {
  .app-text {
    margin: auto;
  }
  .phone-frame {
    width: 200px;
    height: 400px;
    margin: auto;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
/* app */

.form-section-bg {
  position: relative;
  background-image: url('/public/img/subeler/atakoy3.webp');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  z-index: 1;
  overflow: hidden;
}

.form-section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #e7e95f5e;
  z-index: 2;
}

.form-section-bg > * {
  position: relative;
  z-index: 3;
}

.glow-inner {
  position: relative;
  background: radial-gradient(ellipse at bottom, rgba(211, 197, 0, 0.2) 10%, transparent 80%);
  box-shadow:
    inset 0 0 60px rgba(211, 197, 0, 0.3),
    inset 0 0 20px rgba(211, 197, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  color: var(--white-color);
  transition: box-shadow 0.4s ease;
}

.glow-inner:hover {
  box-shadow:
    inset 0 0 80px rgba(211, 197, 0, 0.3),
    inset 0 0 30px rgba(211, 197, 0, 0.3);
}


@keyframes glowPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
}

@media (max-width: 767.98px) {

  .section-small-banners {
    display: block;
    text-align: center;
    margin: 2rem 0;
  }
  .section-small-banners .caption-box {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    border: 2px solid var(--main-color);
    box-sizing: border-box;
    font-weight: bold;
    aspect-ratio: auto;
    height: auto;
  }
  .section-small-banners .banners-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    gap: 1rem;
  }
  .section-small-banners .banner-item {
    width: 100%;
  }

  section.py-5>.container>div {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .section-heading {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .section-heading::after {
    width: 60px;
    bottom: -10px;
    height: 3px;
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.7);
  }
}

.card.h-100 {
  background-color: var(--black-color);
  color: var(--main-color);
  border: none;
  border-radius: 0%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card.h-100 h5 {
  color: var(--main-color);
}
.card.h-100 .ratio {
  position: relative;
  overflow: hidden;
}

.card.h-100 .custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background: rgba(241, 196, 14, 0.596)
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E")
    no-repeat center center;
  background-size: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.card.h-100 .custom-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.custom-play-btn {
  pointer-events: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: var(--black-color);
  overflow: hidden;
}

.video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--white-color);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
}

.video-card {
  max-height: 650px;
  height: auto;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  background-color: var(--black-color);
  border-radius: 8px;
  overflow: hidden;
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-content .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn {
  position: absolute;
  top: -35px;
  right: 0;
  color: var(--white-color);
  font-size: 2rem;
  cursor: pointer;
}
.carousel-item {
  padding-bottom: 2rem;
}

.accordion {
  width: 60%;
  height: auto;
  margin: 50px auto;
  background-color: var(--black-color);
  
}

.accordion .accordion-button {
  background-color: var(--black-color);
  color: var(--white-color);
}

.accordion .accordion-body:focus {
  background-color: var(--white-color);
  color: var(--black-color);
  border: none;
}

.accordion .accordion-button:focus {
  box-shadow: 0 0 5px #000;
  border: none;
}

.accordion-button::after {
  background-image: url(/public/img/fav_icon/utopia-vector.webp);
   transform: rotate(45deg);
}

.accordion-button:not(.collapsed)::after {
  background-image: url(/public/img/fav_icon/utopia-vector.webp);
  transform: rotate(135deg);
}