 /* Global Styles */
 /* Modern Hero Section */
:root {
    --primary: #fb8503;
    --transition: all 0.3s ease;
    --shadow: 0 10px 20px rgba(0,0,0,0.1);
}

body {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.hero {
    background-image: url('bznner-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    color:#fff;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    color:#fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 1rem 0.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
}

.feature-icon { 
    margin-bottom: 0.5rem;
    color: #fb8503;
    font-size: 1.5rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: #fb8503;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    gap: 0.5rem;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #e67a00;
}

.cta-button i {
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}     
 
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Comic Sans MS", "Comic Sans", cursive;
        }


 /* Section Styles */
.pricing-section {
    background-image: url('pricing-section-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* New Heading Styles */
.section-heading {
    background-image: url('pricing-tital-image.png');
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.section-heading h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    margin: 0;
    padding: 0;
}

.cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 1200px;
    max-height: 85vh;
    /* overflow: hidden; */
}

/* Rest of your existing CSS remains exactly the same */
.card {
    width: 750px; /* Reduced width */
    height: 130px; /* Reduced height */
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 
                0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2), 
                0 8px 16px rgba(0, 0, 0, 0.15);
}
.card-1, .card-2, .card-3, .card-4{
    flex-direction: row;
}
.card-1, .card-3 {
    background-color: #228da1;
}

.card-2, .card-4 {
    background-color: #fb8503;
}

.card-2 {
    margin-left: 50px;
}

.card-4 {
    margin-left: 50px;
}

.card-image {
    margin-right: 20px;
    flex-shrink: 0;
    width: auto;
    height: 60px; /* Reduced image size */
}

.card-content {
    flex-grow: 1;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-subtitle {
    font-weight: bold;
    margin-bottom: 0px;
}

.pricing-section .card-description {
    font-size: 1rem;
    color:#fff
}
.pricing-section .card-title{
    color: #fff;
    font-size: 1.19rem;
}

.pricing-section .card-subtitle{
    color: #fff;
    font-size: 1.18rem;
}

.price-container {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(calc(-50% - 20px)); /* Center above button */
    text-align: center;
    width: 100px;
}

.price-amount {
    font-size: 18px;
    font-weight: bold;
}

.price-duration {
    font-size: 14px;
}

.card-button {
    position: absolute;
    right: 50px;
    bottom: 15px;
    background-color: #fb8503;
    color: white;
    border: none;
    padding: 2px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    width: 160px;
    text-align: center;
    right: 20px;
    font-size: 1rem;
}

.card-2 .card-button,
.card-4 .card-button {
    background-color: #228da1;
}



/* Responsive Styles */
@media (max-width: 900px) {
    body {
        overflow: auto;
    }
    
    .pricing-section {
        height: auto;
        min-height: 100vh;
        padding: 20px 10px;
    }
    
    .section-heading h2 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cards-container {
        max-height: none;
        overflow: visible;
        width: 100%;
    }
    
    .card {
        width: 95%;
        height: auto;
        min-height: 130px;
        flex-direction: column;
        padding: 15px;
        margin-left: 0 !important;
    }

    .card-image {
        margin-right: 0;
        margin-bottom: 10px;
        height: 50px;
    }

    .card-content {
        text-align: center;
        margin-bottom: 15px;
    }

    .price-container {
        position: static;
        transform: none;
        width: auto;
        margin-bottom: 10px;
        text-align: center;
    }

    .card-button {
        position: static;
        margin-top: 5px;
        width: auto;
    }

    .card-1-decoration,
    .card-4-decoration {
        display: none; /* Hide decorations on mobile */
    }
}

@media (max-width: 480px) {
    .section-heading h2 {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .card {
        width: 100%;
        padding: 10px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 12px;
    }

    .card-button {
        padding: 5px 15px;
        font-size: 14px;
    }
}