/* Container */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Heading */
.pricing-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}
.pricing-container p.subtitle {
    color: #666;
    margin-bottom: 50px;
}

/* Grid */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Card */
.pricing-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px 20px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

/* Hover effect */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Badge */
.pricing-badge {
    display: inline-block;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

/* Most Popular */
.most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 30px;
    animation: bounce 2s infinite;
}

/* Price */
.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0 10px 0;
    color: #111;
}

/* Button */
.pricing-card button {
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card button:hover {
    background: #3730a3;
    transform: scale(1.05);
}

/* List */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #555;
}
.pricing-card ul li {
    margin-bottom: 10px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.features-container {
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Heading */
.features-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111;
}
.features-container p.subtitle {
    color: #555;
    margin-bottom: 50px;
    font-size: 1.1rem;
    padding-left:120px;
    padding-right:120px;
}

/* Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Feature Card */
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    max-width: 350px;
    transition: all 0.4s ease;
    position: relative;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Icons / Badge */
.feature-icon {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

/* Title & Description */
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}
.feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Steps List */
.steps-list {
    text-align: left;
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}
.steps-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.steps-list li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
}

/* Badge Labels */
.feature-badge {
    display: inline-block;
    background: #4f46e5;
    color: #fff;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.support-block {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.support-block h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.support-block p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.support-block ul {
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.support-block li {
    margin-bottom: 10px;
}

.support-block .highlight {
    color: #f97316; /* orange */
    font-weight: 600;
    font-size: 20px;
}