
.hero-bg {
  width: 100%;
  background-size: cover;
  background-position: center ;
  height:min-content;
    position: relative;
    overflow-x: hidden;
}

.content-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.service-title{
    font-size:49px;
    color:#fff;
    text-align:center;
    font-weight:600;
}
.service-desc{
    font-size:19px;
    color:#C0C2DE;
    text-align:center;
    padding: 0 120px;
}
.sub-title{
    font-size:35px;
    color:#fff;
    text-align:center;
}
.down-arrows{
    position: relative;
    display:flex;
    flex-direction:column;
    color:#fff;
    text-align:center;
    font-weight:100;
    height: 60px;
    
}
.down-arrows i:nth-child(1) {
    position: absolute;
    opacity: 0.6;
    left: 50%;
    transform: translateX(-50%);
    font-size:18px;
    animation: belt1 2.4s linear infinite;
}

.down-arrows i:nth-child(2) {
    position: absolute;
    opacity: 0;
    left: 50%;
    font-size:18px;
    transform: translateX(-50%);
    animation: belt1 2.4s linear infinite;
    animation-delay: 1s;
}

.down-arrows i:nth-child(3) {
    position: absolute;
    opacity: 0;
    font-size:18px;
    left: 50%;
    transform: translateX(-50%);
    animation: belt1 2.4s linear infinite;
    animation-delay: 1.7s;
}
@keyframes belt1 {
    0% { top: -2px; opacity: 0;font-size:16px; }
    15% { top: 1px; opacity: 0.3; font-size:20px;}
    30% { top: 5px; opacity: 0.6;font-size:24px; }
    45% { top: 7px; opacity: 0.7; font-size:28px;}
    60% { top: 9px; opacity: 0.8; font-size:32px;}
    75% { top: 11px; opacity: 0.9; font-size:36px;}
    90% { top: 13px; opacity: 1; font-size:40px;}
    100% { top: 15px; opacity: 0; font-size:44px;}
}


.icon-flow {
    display: flex;
    gap: 10px;
}

.icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
}

.icon-flow .icon {
    color:#363FFF;
    font-size: 30px;
    width:65px;
    height:65px;
    background-color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-flow .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #fff 70%, transparent 0%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    position: relative;
    margin: 0 16px 0 10px;
    margin-top: 32px;
    animation: flowRight 0.6s linear infinite;
}
@keyframes flowRight {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 10px 0; /* background-size genişliği kadar */
    }
}
.icon-flow .line::after {
    font-family: 'remixicon';
    content: '\EA6E';
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color:#fff;
}
.icon-flow .text{
    position:relative;
    width:250px;
}
.icon-flow .text .title {
    margin: 8px 0 3px;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}
.icon-flow .text .desc {
    margin: 0;
    font-size: 15px;
    color: #ccc;
}
.contact-btn{
    padding:10px 20px;
    margin-left:0;
    width:40%;
}
.min-height-120{
    height:120px;
}
.x-1 {
  position:absolute;
  width: 100%;
  height: 100px;
  padding: 0 5%;
}
.x-1 {
  left: -5%;
  transform-origin: center;
  z-index: 1;
}

.marquee-text-track {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 5rem;
  gap: 5rem;
  width: max-content;
  animation: marquee-move-text 70s linear infinite var(--anim-to);
}

@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}

.glass-bg{
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    padding: 20px 25px;
}
.wrap-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Kartlar */
.card-box {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    width:100%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}
.features .card-box{
    height:100%;
}
.card-box .title{
    font-size:18px;
    font-weight:600;
}
.card-box .desc{
    font-size:15px;
    font-weight:400;
}
.card-box .icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    font-size:25px;
    color:#363FFF;
    background-color:#EFF3F6;
    border-radius:50%;
}

.light-btn,
.dark-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 17px;
    color: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:all .5s;
    border:2px solid transparent;
}

.light-btn {
    background: linear-gradient(90deg, #2b8fff, #2731ff, #6a4bff, #2b8fff);
    background-size: 400% 400%;
    animation: lightFlow 6s linear infinite;
    box-shadow: 0 5px 15px rgba(39, 49, 255, 0.4);
}

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

.light-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(39, 49, 255, 0.6);
}

.dark-btn {
    background-color:var(--text-color);
}


.dark-btn:hover {
    box-shadow: 0 0 10px rgba(37 ,211, 102 , 0.6);
    border: 2px solid rgb(37 211 102 / 90%);
    transform: scale(1.05);
}
.dark-btn i {
    color: #25d366;
    animation: shakeIcon 3s ease-in-out infinite;
}

@keyframes shakeIcon {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-4deg); }
    20% { transform:  rotate(4deg); }
    30% { transform:  rotate(-2deg); }
    40% { transform: rotate(2deg); }
    50% { transform:rotate(0deg); }
    100% { transform:  rotate(0deg); }
}


.cards .card-box{
    position:absolute;
    width: 320px;
}
.cards .card-box .icon{
    width:60px;
    height:60px;   
}


.cards .card-box:nth-child(1){
    left: -15%;
    top: -410px;
}
.cards .card-box:nth-child(2){
    right: -10%;
    top: -410px;
}
.cards .card-box:nth-child(3){
    left: -10%;
    top: -200px;
}
.cards .card-box:nth-child(4){
    right: -15%;
    top: -200px;
}




.anim-9 {
  position: absolute;
  top: -10%;
  left: 20%;
  font-size: 22px;
  color: #fff;
  transform: rotate(0deg);
}

.anim-9 {
  --x1: 5px;
  --y1: -5px;
  --r1: 2deg;
  --x2: 0px;
  --y2: 5px;
  --r2: -2deg;
  --x3: -5px;
  --y3: -2px;
  --r3: 1deg;
  animation: float 6s ease-in-out infinite;
}


.anim-10 {
  position: absolute;
  top: 2%;
  right: 0%;
  font-size: 22px;
  color: #fff;
  transform: rotate(0deg);
}

.anim-10 {
  --x1: 5px;
  --y1: -5px;
  --r1: 2deg;
  --x2: 0px;
  --y2: 5px;
  --r2: -2deg;
  --x3: -5px;
  --y3: -2px;
  --r3: 1deg;
  animation: float 6s ease-in-out .3s infinite;
}

.anim-11 {
  position: absolute;
  bottom: -20%;
  left: 5%;
  font-size: 22px;
  color: #fff;
  transform: rotate(0deg);
}

.anim-11{
  --x1: 5px;
  --y1: -5px;
  --r1: 2deg;
  --x2: 0px;
  --y2: 5px;
  --r2: -2deg;
  --x3: -5px;
  --y3: -2px;
  --r3: 1deg;
  animation: float 6s ease-in-out .5s infinite;
}

.anim-12 {
  position: absolute;
  bottom: -23%;
  right: 5%;
  font-size: 22px;
  color: #fff;
  transform: rotate(0deg);
}

.anim-12 {
  --x1: 5px;
  --y1: -5px;
  --r1: 2deg;
  --x2: 0px;
  --y2: 5px;
  --r2: -2deg;
  --x3: -5px;
  --y3: -2px;
  --r3: 1deg;
  animation: float 6s ease-in-out 1s infinite;
}
.pointer-container{
    top: -40%;
    left: -2%;
}
.click-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 50px;
    border: 0;
    font-weight: 600;
    margin-top: 1.5rem;
    color: #4952ff;
    padding: 15px 20px;
    margin-left: 0;
    width: 40%;
    animation: pointer-text-anim 7s ease-in-out infinite;
}
.click-btn .btn-scale {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
}
@keyframes pointer-anim {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  10% {
    transform: translate(215px, 65px) scale(1.05) rotate(5deg);
  }
  20% {
    transform: translate(210px, 60px) scale(0.95) rotate(-5deg); 
  }
  30% {
    transform: translate(210px, 65px) scale(1.05) rotate(5deg); 
  }
  40% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@media (max-width: 1450px) {
    @keyframes pointer-anim {
      0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
      }
      10% {
        transform: translate(195px, 65px) scale(1.05) rotate(5deg);
      }
      20% {
        transform: translate(190px, 60px) scale(0.95) rotate(-5deg); 
      }
      30% {
        transform: translate(190px, 65px) scale(1.05) rotate(5deg); 
      }
      40% {
        transform: translate(0, 0) scale(1) rotate(0deg);
      }
      100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
      }
    }
}
@media (max-width: 1200px) {
    .anim-10 {
        right: 3%;
    }
    .cards .card-box{
        padding:10px!important;
    }
    .cards .card-box .icon{
        width:40px;
        height:40px;   
    }
    .cards .card-box .title {
        font-size: 16px;
        font-weight: 500;
    }
    .card-box .desc {
        font-size: 13px;
        font-weight: 400;
    }
    .cards .card-box:nth-child(1){
        left: -35%;
        top: -333px;
    }
    .cards .card-box:nth-child(2){
        right: -30%;
        top: -333px;
    }
    .cards .card-box:nth-child(3){
        left: -30%;
        top: -158px;
    }
    .cards .card-box:nth-child(4){
        right: -35%;
        top: -158px;
    }
}


@media (max-width: 1060px) {
    .cards .card-box:nth-child(1){
        left: -25%;
        top: -333px;
    }
    .cards .card-box:nth-child(2){
        right: -20%;
        top: -333px;
    }
    .cards .card-box:nth-child(3){
        left: -20%;
        top: -158px;
    }
    .cards .card-box:nth-child(4){
        right: -25%;
        top: -158px;
    }
}
@media (max-width: 991px) {
    
    .service-title{
        font-size:45px;
    }
    .service-desc{
        padding:0px 20px;
        font-size: 17px;
    }
    .sub-title{
        font-size: 30px;
    }
    .cards .card-box:nth-child(1){
        left: -15%;
        top: -363px;
    }
    .cards .card-box:nth-child(2){
        right: -10%;
        top: -363px;
    }
    .cards .card-box:nth-child(3){
        left: -10%;
        top: -168px;
    }
    .cards .card-box:nth-child(4){
        right: -15%;
        top: -168px;
    }
    .pointer-container{
        top: -100%;
        left: -2%;
    }
}
@media (max-width: 910px) {
    .features .image{
        display:none!important;
    }
    .cards .card-box{
        position:static;
        min-width:49%;
        max-width: 49%;
    }
    .cards {
        display:flex;
        gap:5px;
        flex-wrap:wrap;
    }
}
@media (max-width: 767px) {
    
    .icon-wrapper {
        width: 100%;
        padding-right: 35px;
    }
    .sf-40{
        font-size:35px;
        text-align:center;
    }
    .sf-19{
        font-size:16px;
    }
}
@media (max-width: 700px) {
   
    .icon-wrapper {
        width: 100%;
        padding-right: 35px;
    } 
}
@media (max-width: 653px) {
    
    .icon-wrapper {
        width: 100%;
        padding-right: 35px;
    } 
    .w-min-content{
        min-width:min-content;
    }
    .anim-9 {
      top: -5%;
    }
    .anim-10 {
        right: 3%;
    }
    .anim-12 {
        bottom: -20%;
    }
}
@media (max-width: 520px) {
    .light-btn, .dark-btn {
        padding: 15px 20px;
    }
}
@media (max-width: 390px) {
    .light-btn, .dark-btn {
        padding: 5px 15px;
    }
}