.pricing-section {
    background: #f8fafc;
    padding: 60px 0 40px 0;
    text-align: center;
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #05272A;
    letter-spacing: 1px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 40px 30px 40px 30px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Changed to flex-start for better RTL alignment */
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border-top: 5px solid #1dc3d2;
    text-align: right;
}

.pricing-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: #1dc3d2;
    align-self: flex-end; /* Align icon to the right */
}

.pricing-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    width: 100%;
    text-align: right;
    padding-right: 0; /* Remove padding */
}

.pricing-card .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    text-align: right;
    width: 100%;
    direction: rtl;
}

.pricing-card .card-features li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: #05272A;
    flex-direction: row-reverse;
    gap: 8px;
    padding-right: 0; /* Remove padding */
    width: 100%; /* Ensure full width */
    justify-content: flex-start; /* Align content to the right (in RTL) */
}

.pricing-card .card-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1dc3d2;
    margin-top: 10px;
    letter-spacing: 1px;
    align-self: flex-end; /* Align price to the right */
}

.pricing-card .btn-custom {
    display: inline-block;
    background: linear-gradient(to right, #031f2a, #28194c);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
    width: 80%;
    align-self: center; /* Keep button centered */
    box-shadow: 0 4px 15px rgba(5, 39, 42, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card .btn-custom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #28194c, #031f2a);
    transition: all 0.4s ease;
    z-index: -1;
    border-radius: 30px;
}

.pricing-card .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(5, 39, 42, 0.3);
}

.pricing-card .btn-custom:hover:before {
    width: 100%;
}

/* Featured Card Styles */
.pricing-card.featured {
    background: linear-gradient(to right, #031f2a, #28194c);
    color: #fff;
    box-shadow: 0 12px 40px rgba(29,195,210,0.15);
    transform: scale(1.08);
    z-index: 2;
    border-top-color: transparent;
}

.pricing-card.featured .card-title,
.pricing-card.featured .card-features li,
.pricing-card.featured .card-price {
    color: #fff;
}

.pricing-card.featured .card-features i {
    color: #fff;
}

.pricing-card.featured .card-icon {
    color: #fff;
}

.pricing-card.featured .btn-custom {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    color: #05272A;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .btn-custom:before {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.pricing-card.featured .btn-custom:hover {
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.pricing-contact {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #05272A;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: 0.2s, color 0.2s;
    text-decoration: none;
}

.contact-btn:hover {
    background: linear-gradient(to right, #031f2a, #28194c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 39, 42, 0.2);
}

/* Page Banner */
.page-banner {
    background-image:url('../images/computer-mouse-paper-bag-blue-background-top-view.jpg'); 
    background-size: cover;
    background-position: center;
    height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .page-banner {
        height: 300px;
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .banner-content p {
        font-size: 1.1rem;
    }
}