/*////////////      pricing        */
.pricing {
    padding: 80px 20px;
    background: #eef1f5;
    text-align: center;
}

.pricing-container {
    max-width: 1100px;
    margin: auto;
}

.pricing h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.pricing-sub {
    color: #64748b;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-card {
    background: white;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.price {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1e3a8a;
}

.price span {
    font-size: 14px;
    font-weight: normal;
    color: #64748b;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #475569;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #10b981);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: white;
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
}

.featured {
    border: 2px solid #10b981;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/*////////////      platform-features        */
.advanced-section {
    padding: 80px 100px;
    margin: auto;
    background-color: #fafafb;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #64748b;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    margin-bottom: 20px;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-text {
    direction: ltr;
}

.feature-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.feature-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-text ul {
    padding-left: 18px;
    color: #334155;
}

.feature-text li {
    margin-bottom: 6px;
}

.feature-image{
    width: fit-content;
}

.feature-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
    direction: rtl;
}

.feature-image text {
    direction: ltr;
}

.feature-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 480px) {

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

@media (max-width: 992px) {
    .content {
        padding: 3rem 2.5rem;
    }

    .feature-image svg {
        width: 420px;
        height: 320px;
    }
    .feature-row {
        gap: 0!important;
    }   
}

/* Mobile */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .feature-image svg {
        width: 320px;
        height: 220px;
    }
    .advanced-section{
            padding: 60px 40px!important;
    }
    .feature-row {
        gap: 0!important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .content {
        padding: 1.5rem 1rem;
    }
    .feature-image svg {
        width: 320px;
        height: 220px;
    }
    .advanced-section{
            padding: 40px 20px!important;
    }
    .feature-row {
        gap: 0!important;
        margin-bottom: 10px!important;
    }    
}

.content-box {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease;
}

.content-box:hover {
    transform: translateY(-6px);
}

.content-box .overlay {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0));
    color: #fff;
    border-radius: 10px;
}

.content-box.user-friendly h3,
.content-box.accurate h3,
.content-box.flexible h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.content-box.user-friendly p,
.content-box.accurate p,
.content-box.flexible p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.user-friendly {
    background-image: url('../../images/User-Friendly.png');
}

.accurate {
    background-image: url('../../images/Accurate.png');
}

.flexible {
    background-image: url('../../images/Flexible.png');
}