body {
  background: linear-gradient(135deg, #f4f0ff 0%, #e8faff 100%);
  background-attachment: fixed;
  background-size: cover;
}



/* ================= HERO ================== */
.hero-section {
 
  padding: 80px 0 40px;
}

.hero-title {
  font-size: 46px;
  font-weight: 700;
  color: #000;
}

.hero-text {
  font-size: 18px;
  margin: 15px 0 30px;
  color: #333;
  max-width: 480px;
}

/* BUTTON */
.btn-start {
  background: linear-gradient(90deg, #9f3aff, #3dbbff);
  padding: 14px 32px;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.arrow-img {
    width: 100px;
    position: absolute;
    left: 170px;
    top: -65px;
}

/* SLIDER IMAGE */
.slider-img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    border-radius: 40cap;
    margin-top: 20px;
}

/* ============= SERVICES ICONS ============= */

.icon-box {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.2s;
}

.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.icon-box img {
  width: 40px;
  margin-bottom: 8px;
}

.icon-box span {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

/* MOBIL */
@media (max-width: 768px) {
    
    
  .frk.col-lg-5.image-section.position-relative {
    margin-top: 50px;
}


  .hero-title {
    font-size: 32px;
  }

 nav.main-navbar.navbar.navbar-expand-lg {
    background-color: white;
}

.floating-card.stats-card {
    display: none;
}

.integration-box {
  
    height: 215px;
}   

.products-badge {
 font-size: 9px !important;   
}

a.products-btn {
    font-size: 12px;
    margin-top: 28px;
}

  .arrow-img {
    width: 70px;
    left: 120px;
  }

  .icon-box {
    padding: 15px;
  }
}




















/* ================= ACCORDION ================= */

.accordion-item {
  background: #fff;
  border: 1px solid #dce7ff;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: .2s ease;
}

.accordion-item.active {
  border-color: #4b78ff;
  border-width: 2px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.accordion-icon {
  font-size: 24px;
  transition: .2s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  margin-top: 14px;
}

.accordion-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ============ IMAGE SECTION ============ */

.main-image {
  width: 100%;
  border-radius: 28px;

  object-fit: cover;
}

/* Floating Cards */

.floating-card {
  position: absolute;
  background: #fff;
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stats-card {
  top: -20px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chart-icon {
  display: flex;
  gap: 4px;
}

.chart-bar {
  width: 6px;
  height: 18px;
  background: #4a7bff;
  border-radius: 4px;
}

.rating-card {
  bottom: -25px;
  right: -12px;
  width: 240px;
  text-align: center;
}

.stars {
  font-size: 22px;
  color: #ffbf3b;
}

.avatars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
}

.avatar {
  width: 28px;
  height: 28px;
  background: #7a5cff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */
@media(max-width: 992px) {
  .rating-card {
    right: 0;
    left: 0;
    margin: auto;
  }

  .stats-card {
    left: 0;
    right: 0;
    margin: auto;
  }
}


.service-icons-section {
  background: transparent; /* Zemin degrade bozulmasın */
  padding-bottom: 40px;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: .2s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6BC6D9 0%, #2B8FB8 100%); /* Senin örnekteki mavi renk */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.icon-wrap i {
  font-size: 24px;
  color: #fff;
}

.service-box span {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

/* Mobil uyum */
@media(max-width: 768px) {
  .service-box {
    padding: 14px 14px;
  }
  .icon-wrap {
    width: 44px;
    height: 44px;
  }
}









