/* packages-style.css */


.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h1 {
    font-weight: 800;
    color: #333;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    width: 350px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
}

/* Header Section of Card */
.card-head {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px dashed #ddd;
}

.card-head h2 { margin: 0; font-size: 20px; }
.card-head p { color: #666; font-size: 14px; margin: 10px 0; }

.price-box {
    font-size: 28px;
    font-weight: 900;
    color: #28a745; /* Green for Rs. */
}

.price-box span { font-size: 14px; color: #888; font-weight: normal; }

/* Features List */
.features-list {
    padding: 25px;
    list-style: none;
    margin: 0;
    flex-grow: 1;
}

.features-list li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #444;
}

.features-list li::before {
    content: '✓';
    margin-right: 10px;
    color: #333;
    font-weight: bold;
}

/* Buttons */
.btn-container {
    padding: 20px;
}

.pkg-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s;
}

/* Specific Styles for Gold and VIP */
.gold-card { border-top: 5px solid #ff9800; }
.gold-title { color: #ff9800; }
.gold-btn { background: #3b60a3; color: white; }

.vip-card { 
    background: #0f172a; 
    color: white; 
    border: none;
}
.vip-card .card-head p, .vip-card .features-list li { color: #cbd5e1; }
.vip-card .features-list li::before { color: white; }
.vip-title { color: #fbbf24; }
.vip-btn { background: #3b60a3; color: white; }

.silver-btn { border: 1px solid #333; color: #333; }

/* Badges */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff7043;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.badge.best { background: #fbbf24; color: #000; }

/* Responsive */
@media (max-width: 768px) {
    .package-card { width: 100%; }
}