/* Main Card Container */
.modern-row-card {
    background: #ffffff;
    border-radius: 20px;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    /*height:110px;*/
    /* Soft Elevation Shadow */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 100%; /* Aap apni marzi se adjust kar sakte hain */
    transition: all 0.3s ease;
}

.modern-row-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}
.points-grid.show-points {
    padding-bottom: 40px;
}

.text-wrapper h6 {
    font-weight: 400;
}
/* Header Styling */
.card-header-area {
    margin-bottom: 30px;
}

.card-main-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #111;
    margin: 0;
}

.title-underline {
    width: 40px;
    height: 4px;
    background: #de075f;
    background: linear-gradient(to right, #de075f, #ffcbe0);
    border-radius: 10px;
    margin-top: 8px;
}

/* Row & Grid Styling */
.points-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point-row-item {
    display: flex;
    align-items: center; /* Icons aur text ko center align rakhta hai ek row mein */
    gap: 20px;
}

.icon-wrapper
 {
    width: 30px;
    height: 30px;
    background: #ffe9f2;
    color: #de075f;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.point-row-item:hover .icon-wrapper {
    background: #de075f;
    color: #ffffff;
    transform: scale(1.1);
}

/* Typography Styling */
.text-wrapper {
    flex: 1;
}

.text-wrapper h5 {
    margin: 0 0 2px 0;
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
}

.text-wrapper p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}





/* FAQs CSS */


/* Layout Styling */
.plans-text {
    max-width: 100%;
    margin: 0 auto;
}

.faq-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #f28bb6;
    margin-bottom: 30px;
    text-align: left;
    text-transform: uppercase;
}

/* Accordion Card */
.modern-faq-accordion .faq-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.6s ease;
}

.modern-faq-accordion .faq-card:hover {
    border-color: #f28bb6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Header & Button */
.faq-card-header {
    background: #fff;
}
.faq-card-header:hover {
    background: #fff !important;
}

.faq-opener {
    width: 100%;
    padding: 22px 25px;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #f28bb6;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none !important;
}

/* Icon (Plus/Minus Effect) */
.faq-plus-minus {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-plus-minus::before, .faq-plus-minus::after {
    content: '';
    position: absolute;
    background-color: #f28bb6;
    transition: all 0.3s ease;
}

/* Horizontal line */
.faq-plus-minus::before {
    width: 100%; height: 2px; top: 9px; left: 0;
}

/* Vertical line (disappears when open) */
.faq-plus-minus::after {
    width: 2px; height: 100%; top: 0; left: 9px;
}

.faq-opener:not(.collapsed) .faq-plus-minus::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Collapse Animation */
.faq-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background-color: white;
}

.faq-card-body {
    padding: 15px 25px 0px 25px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.faq-card-body a {
    color: #f28bb6;
    text-decoration: none;
    font-weight: 600;
}
.faq-opener.collapsed:hover {
    background-color: white !important;
    color: #f28bb6;
}

.faq-opener:hover {
    background: white !important;
    color: #f28bb6;
}



/* Newsletter Widget */
.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;

    padding: 20px;
    width:100%;
}

.newsletter-card {
    width: 100%;
    max-width: 650px; /* Mobile-friendly max width */
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    box-sizing: border-box;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.newsletter-form input {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #d0d7e2;
    font-size: 14.5px;
    width: 100%;
    box-sizing: border-box;
}

.btn {
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    width: 100%;
}

.btn.primary {
    background: #0a66ff;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn.primary:hover {
    background: #004fd8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 102, 255, 0.35);
}

.btn.secondary {
    margin-top: 16px;
    background: #0a2540;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-decoration: none;
}

.btn.secondary:hover {
    background: #061a2f;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap; /* allows wrapping on small screens */
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a2540;
    font-size: 16px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #0a66ff;
    color: #fff;
    transform: translateY(-3px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .newsletter-card {
        max-width: 100%;
        padding: 30px 20px;
    }

    .newsletter-form input {
        font-size: 14px;
        padding: 12px;
    }

    .btn {
        font-size: 14px;
        padding: 12px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .newsletter-card h2 {
        font-size: 22px;
    }

    .newsletter-card .subtitle {
        font-size: 14px;
    }
}


.category-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-banner {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.category-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
	transition: background 0.3s ease;
}

.category-banner .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: end;
    color: #5b7f95;
    text-align: right;
    padding-top: 20px;
    padding-right: 40px;
    padding-left: 100px;
}

.category-banner h3 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
}

.category-banner span {
    font-size: 16px;
}

.category-banner:hover::after {
    background: rgba(255,255,255,0.35);
}

/* Mobile */
@media (max-width: 768px) {
    .category-banner-grid {
        grid-template-columns: 1fr;
    }
}
.entry-title {
    display: none !important;
}
.custom-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}
.post-card img {
    transition: transform 0.3s;
}
.post-card img:hover {
    transform: scale(1.05);
}
.post-card h3 {
    color: #333;
}
.post-card .read-more:hover {
    background: #f6a11b;
}

.ast-archive-description {
	background: transparent !important;
text-align:center !important;}
.page-title.ast-archive-title {
    font-weight: 800;

}
