/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

.container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Hero Section */
        .hero-new {
            /* HERO IMAGE: Ukrainian Flavors trailer at night with LED lighting */
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/wp-content/uploads/2024/11/11-5-20-Nicollet-Island-Hitch-and-Sip-Styled-Daytime-city-shot-2nd-angle-scaled-1.jpg') no-repeat center center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-new::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(transparent, var(--primary));
            opacity: 0.7;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .hero-new h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1;
            color:#FFF;
        }
        
        .hero-new .subtitle {
            font-size: 1.5rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .hero-new p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin: 20px auto 30px;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .hero-buttons .cta-button {
            padding: 15px 35px;
            font-size: 20px;
        }
        
        /* Founding Banner */
        .founding-banner {
            background: linear-gradient(to right, var(--minnesota-green), var(--success));
            color: white;
            padding: 20px 0;
            text-align: center;
            font-weight: 600;
        }
        
        .founding-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .founding-counter {
            font-size: 2rem;
            font-weight: 700;
        }
        
        .founding-counter span {
            color: #ffeb3b;
        }
        
        /* Intro Section */
        .intro-section {
            padding: 80px 0;
            background: var(--bg);
        }
        
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .intro-content h2 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .intro-content p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #555;
        }
        
        .intro-features {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .intro-feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .intro-feature i {
            color: var(--minnesota-green);
            font-size: 1.5rem;
        }
        
        .intro-image {
            position: relative;
        }
        
        .intro-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .intro-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 15px 25px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(93, 63, 211, 0.3);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .service-features {
            list-style: none;
            margin: 20px 0;
        }
        
        .service-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .service-features i {
            color: var(--minnesota-green);
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: var(--bg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .feature-card {
            text-align: center;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(93, 63, 211, 0.3);
        }
        
        .feature-card h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: var(--light);
        }
        
        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .gallery-tab {
            padding: 10px 25px;
            background: white;
            border: 2px solid var(--primary);
            border-radius: 30px;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .gallery-tab.active {
            background: var(--primary);
            color: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .gallery-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
        }
        
        .gallery-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
                      color:#462d96;
        }
        
        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: var(--bg);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background: var(--primary);
            opacity: 0.3;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .process-step h4 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* Trust Section */
        .trust-section {
            padding: 60px 0;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }
        
        .trust-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: var(--minnesota-green);
        }
        
        .trust-item p {
            font-size: 1.2rem;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: var(--light);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            color: var(--accent);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            margin-top: 20px;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
            margin-right: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: #eae7fb;
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* FAQ Preview */
        .faq-preview {
            padding: 80px 0;
            background: var(--bg);
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .faq-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary);
        }
        
        .faq-item h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
         .gallery-section .gallery-item:before {
                        content: "";
                        position: absolute;
                        background-color: #ffffff5c;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                }
        /* Responsive */
        @media (max-width: 992px) {
            .intro-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .intro-features {
                justify-content: center;
            }
            
            .process-step::after {
                display: none;
            }
        }