


/* انیمیشن گرادینت */
@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* استایل موج‌ها */
.wave {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }
    25% {
        transform: translateX(-25%);
    }
    50% {
        transform: translateX(-50%);
    }
    75% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(1);
    }
}

























        

        
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        

        
        .image-container {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px;
        }
        
        .floating-image {
            max-width: 750px;
            height: auto;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .content {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            backdrop-filter: blur(8px);
        }
        
        .title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .title1 {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            border-radius: 2px;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        
        .feature {
            margin-top: -20px;
            margin-bottom: -30px;
            flex: 1;
            min-width: 300px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }
        
        .feature:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .feature i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #feb47b;
        }
        
        .feature h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #fff;
            text-align: center;
        }
        
        .feature p {
            font-size: 1.8rem;
            color: #d0d0ff;
            text-align: center;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(45deg, #ff7e5f, #feb47b);
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            margin-top: 20px;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(254, 180, 123, 0.4);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(254, 180, 123, 0.6);
        }
        



.feature-card-6 {
  direction: rtl;
  text-align: center;
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px); 
  border-radius: 15px; 
  padding: 30px; 
  height: 100%; 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); 
  border: 1px solid rgba(255, 255, 255, 0.18);
  }

.feature-card-6 li {
  text-align: right;
  }

  .feature-card-6 p {
  text-align: center;
  }




/* افزودن استایل‌های انیمیشنی برای کارت‌ها */
  .feature-card {
    transition: all 0.4s ease;
    transform: translateY(0);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15) !important;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 180, 123, 0.6);
  }















/* انیمیشن برای درصدها */
.percentage-counter {
    display: inline-block;
    min-width: 40px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 8px rgba(254, 180, 123, 0.8);
}

/* استایل‌های اضافی برای جلوه بیشتر */
.feature-number {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.feature-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 2.2s ease-out forwards;
}

@keyframes growLine {
    to {
        transform: scaleX(1);
    }
}