/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.13.6.1783873290
Updated: 2026-07-12 16:21:30

*/
/* BiharSolution Homepage Hero Section */

.bihar-homepage {
    width: 100%;
}

.hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7ff, #ffffff);
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    background: #0066ff;
    color: #ffffff;
}

.hero-button:hover {
    opacity: 0.85;
}


/* Mobile Responsive */

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }

}
/* Latest Updates Section */

.updates-section {
    padding: 60px 20px;
    text-align: center;
}

.updates-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.update-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.update-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.update-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.update-card p {
    font-size: 16px;
    line-height: 1.6;
}

.update-card:hover {
    transform: translateY(-8px);
}


/* Mobile */

@media (max-width: 768px) {

    .update-cards {
        grid-template-columns: 1fr;
    }

}
body {
    border-top: 10px solid red !important;
}
.update-card {
    border: 3px solid red !important;
}
/* Premium Latest Updates Cards */

.updates-section {
    padding: 70px 20px;
    background: #f8fafc;
}

.updates-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 45px;
}

.update-cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.update-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.update-card:hover {
    transform: translateY(-10px);
}

.update-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.update-card p {
    color: #555;
    line-height: 1.6;
}


/* Mobile */

@media(max-width:768px){

    .update-cards{
        grid-template-columns:1fr;
    }

    .updates-section h2{
        font-size:30px;
    }

}
/* Hero Search Box */

.hero-search {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 35px auto;
    max-width: 600px;
}

.hero-search input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.hero-search button {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    background: #0066ff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.hero-search button:hover {
    opacity: 0.85;
}


/* Mobile Search */

@media(max-width:768px){

    .hero-search {
        flex-direction: column;
    }

    .hero-search button {
        width:100%;
    }

}
/* Popular Categories */

.categories-section {
    padding: 70px 20px;
    text-align: center;
    background: #ffffff;
}

.categories-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.category-cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 16px;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.category-card p {
    line-height: 1.6;
}


/* Mobile */

@media(max-width:768px){

    .category-cards {
        grid-template-columns:1fr;
    }

}
.category-card {
    border: 2px solid #ddd !important;
    background: white !important;
    padding: 40px 25px !important;
}