﻿body {
  font-family: 'Mulish', sans-serif;
}

:root {
  --color-1: #86d0e0; /* Örnek renk 1 */
}

.color-1 {
  color: var(--color-1); /* Örnek renk 1 */
}
.bg-color-1 {
  background-color: var(--color-1); /* Örnek renk 1 */
}
.border-color-1 {
  border-color: var(--color-1) !important; /* Örnek renk 1 */
}
.border-title {
  border-bottom-width: 10px !important;
}

.btn-border {
  border: 2px solid var(--color-1);
  color: var(--color-1);
}
.btn-border-reverse {
  border: 2px solid var(--color-1);
  color: white;
  background-color: var(--color-1);
}

.btn-border:hover {
  background-color: var(--color-1);
  border: 2px solid var(--color-1);
  color: white;
}
.btn-border-reverse:hover {
  background-color: white;
  border: 2px solid var(--color-1);
  color: var(--color-1);
}

.btn-border:active {
  background-color: var(--color-1) !important;
  border: 2px solid white !important;
  color: white !important;
}

.btn-border-reverse:active {
  background-color: var(--color-1) !important;
  border: 2px solid white !important;
  color: white !important;
}
.primary-border {
    border: 1px solid #eee;
    border-radius: 16px;
}

.header-link {
  transition: 0s ease;
  border-bottom: 2px solid transparent;
  font-weight: bold;
}

.header-link:hover {
  border-bottom: 2px solid var(--color-1);
}
.bg-footer {
  background-color: #032830;
}

/* brand slider css */

.container {
  overflow: hidden;
}
.container .slider {
  animation: slidein 30s linear infinite;
  white-space: nowrap;
}
.container .slider .logos {
  display: inline-block;
  margin: 0px 0;
}
.container .slider .logos .bi {
  margin-left: 100px;
  font-size: 5rem;
  animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
  color: var(--color-1);
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* yorum */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 4rem;
  color: var(--color-1);
  opacity: 0.2;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--color-1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

#testimonialCarousel .carousel-indicators {
  bottom: -50px;
}
#what-is-finraks .carousel-control-prev,
#what-is-finraks .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--color-1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

#what-is-finraks .carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-1);
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
}
/* how step */

.how-step:hover {
  transform: scale(1) !important;
}

.how-step {
  border: none;
  box-shadow: none;
}

/* pricing */

.pricing-card-1 {
  border-top: 10px solid #c2f4f8 !important;
}

.pricing-card-2 {
  border-top: 10px solid #6ddaf5 !important;
}

.pricing-card-3 {
  border-top: 10px solid #37bff5 !important;
}

.desc-pricing {
  margin-top: 100px !important;
}

.strikethrough {
  text-decoration: line-through;
  color: #032830;
}
.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.fade-transition {
  transition: all 0.5s ease;
  opacity: 0;
}
.fade-show {
  opacity: 1;
}

/* pricing butpn özelletirme */

.toggle-container {
  display: flex;
  background: #f1f1f1;
  border-radius: 25px;
  width: 220px;
  position: relative;
}

.toggle-button {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.toggle-slider {
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--color-1);
  border-radius: 20px;
  transition: all 0.3s ease;
  z-index: 1;
}

.toggle-container:hover {
  cursor: pointer;
}

/* daha sonra sizi arıyalım */
.form-container {
  margin: auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
  background: #f8f9fa;
  height: 45px;
}
.form-check-label {
  font-size: 14px;
  color: #666;
}
.btn-submit {
  width: 150px;
  border-radius: 25px;
}

/* contacts */
.icon-border {
  border-radius: 50%;
  padding: 10px;
  background-color: var(--color-1);
}

/* slider     */

.slider-item {
  height: 70vh !important;
  margin-bottom: 100px;
}

.carousel-caption h5 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
}
.carousel-caption p {
  width: 60%;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.9;
}
.carousel-caption a {
  text-transform: uppercase;
  text-decoration: none;
  background: var(--color-1);
  padding: 10px 30px;
  display: inline-block;
  color: #000;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .carousel-caption {
    bottom: 165px;
  }
  .carousel-caption h5 {
    font-size: 17px;
  }
  .carousel-caption a {
    padding: 10px 15px;
    font-size: 15px;
  }
  .carousel-caption p,
  .carousel-caption a,
  .carousel-caption h5 {
    margin: auto;
    text-align: center;
    margin-top: 10px;
  }
}

/* bg animation */
svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: block;
  background-color: #ffffff;
}

/* SSS */
.accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  background-color: var(--color-1);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  border: none;
  background-color: transparent;
}

/*modal*/
.modal-backdrop.show {
    backdrop-filter: blur(15px) !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
}
