

/* Premium Plans Section */
.premium-plans{
    padding: 0px 20px;
    background-color: #fff;
    text-align: center;
}

.section-header h2 {
    top: -10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 3.3rem;
    color: #7A1E1E;
    margin-bottom: 100px;
    position: relative;
}



.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.plan-card h3 {
    font-size: 1.8rem;
    color: #7A1E1E;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    color: #8e2929;
    margin: 10px 0;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-card ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: #2C2C2C;
    position: relative;
}

.plan-card ul li::before {
    content: '✔';
    color:#7A1E1E ;
    position: absolute;
    left: -20px;
}

.btn {
    background: linear-gradient(150deg, rgba(122, 30, 30, 0.85), rgba(169, 88, 88, 0.95));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .plans-container {
        flex-direction: column;
        align-items: center;
        margin-top: -90px;
    }

    .plan-card {
        width: 90%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .section-header1 h2 {
        font-size: 2.5rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .plan-card h3 {
        font-size: 1.5rem;
    }
}
/* Premium Plans */
.premium-planss {
 background: linear-gradient(175deg, #FAF5E8, #7A1E1E);
  padding: 80px 20px;
  text-align: center;
  
}

.plans-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: -100px;
}

.plan-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

