:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b911c52 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.prairie-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #081a36 0%,
        #183863 40%,
        #ffb56b 100%
    );
}

/* =========================
   SUN
   ========================= */
.sun {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    filter: blur(20px);
    box-shadow: 
        0 0 100px rgba(255, 255, 255, .8),
        0 0 250px rgba(255, 200, 100, .5);

    opacity: 0;
    animation: 
        sunReveal 2s ease-out 0.2s forwards, 
        pulse 6s infinite ease-in-out 2.2s;
}

/* =========================
   TITLE
   ========================= */
.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.title h1 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(3rem, 10vw, 12rem);
    font-weight: 900;
    letter-spacing: -4px;
    color: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);

    opacity: 0;
    filter: blur(15px);
    transform: translateY(40px);
    animation: textBlurReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;

    word-break: break-word;
    line-height: 1.05;
}

.title span {
    color: rgba(204, 255, 0, .35);
}

/* =========================
   TYPING TEXT
   ========================= */
.typing-wrapper {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.title p {
    color: white;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;

    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid rgba(255, 255, 255, 0.8);

    width: 0;

    animation: 
        typing 1.5s steps(35, end) 1.8s forwards,
        blinkCursor 0.75s step-end infinite;
}

/* =========================
   FIELD
   ========================= */
.field {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;

    transform: translateY(100%);
    animation: fieldRise 1.8s cubic-bezier(0.25, 1, 0.5, 1) 1.2s forwards;
}

.field span {
    position: relative;
    width: 4px;
    height: 300px;
    background: linear-gradient(to top, #000, #0d2a4f);
    border-radius: 20px;
    transform-origin: bottom center;
    animation: sway 4s infinite ease-in-out;
}

.field span:nth-child(odd) {
    height: 380px;
    animation-duration: 5s;
}

.field span:nth-child(3n) {
    height: 450px;
    animation-duration: 6s;
}

.field span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -4px;
    width: 12px;
    height: 70px;
    background: #00102b;
    border-radius: 50px;
    transform: rotate(-8deg);
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes sunReveal {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes textBlurReveal {
    0% {
        opacity: 0;
        filter: blur(15px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes fieldRise {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes typing {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blinkCursor {
    0%, 100% { border-color: transparent; }
    50% { border-color: rgba(255, 255, 255, 0.8); }
}

@keyframes sway {
    0% { transform: rotate(-4deg); }
    50% { transform: rotate(4deg); }
    100% { transform: rotate(-4deg); }
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.08); }
    100% { transform: translateX(-50%) scale(1); }
}

/* =========================
   MOBILE FIXES
   ========================= */
@media (max-width: 768px) {

    .prairie-hero {
        height: 100vh;
        padding: 20px;
    }

    .title h1 {
        font-size: clamp(2.2rem, 10vw, 4rem);
        letter-spacing: -2px;
        text-align: center;
    }

    .title p {
        font-size: 0.75rem;
        letter-spacing: 2px;

        white-space: normal;
        text-align: center;

        width: auto;
        max-width: 90vw;

        border-right: 1px solid rgba(255,255,255,0.6);

        animation: fadeInText 1.5s ease 1.5s forwards;
    }

    .sun {
        width: 90px;
        height: 90px;
        top: 12%;
        filter: blur(15px);
    }

    .field {
        height: 45%;
        opacity: 0.6;
    }

    .field span {
        height: 180px;
    }

    .field span:nth-child(3n) {
        height: 240px;
    }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4468820 *//* ==========================================================================
   PRAIRIE PIXEL - SEO BENTO SERVICES GRID (HOVER REVEAL)
   ========================================================================== */
.prairie-services {
    padding: 120px 5%;
    background: #081a36;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    z-index: 20;
}

/* Typography & Headers */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #a0aab8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-header p {
    font-size: 1.2rem;
    color: #a0aab8;
    font-weight: 400;
}

/* --- ASYMMETRICAL BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start; /* Essential for the hover expansion to push down properly */
}

/* Grid Placements */
.card-web { grid-column: span 2; }
.card-ai { grid-column: span 1; grid-row: span 2; height: 100%; }
.card-google { grid-column: span 1; }
.card-meta { grid-column: span 1; }

/* The Frosted Glass Cards */
.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 32px;
    padding: 45px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- HIDDEN REVEAL ANIMATION --- */
.card-details {
    display: grid;
    grid-template-rows: 0fr; 
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-details-inner {
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px); 
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Expand and Reveal on Hover */
.bento-card:hover .card-details {
    grid-template-rows: 1fr; 
}

.bento-card:hover .card-details-inner {
    opacity: 1;
    transform: translateY(0);
    padding-top: 15px; 
}

/* --- LIGHT & HOVER ANIMATIONS --- */
.card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    z-index: 3;
    pointer-events: none;
}

.bento-card:hover .card-shine {
    animation: glassShine 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes glassShine {
    0% { left: -150%; }
    100% { left: 250%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.floating-icon {
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }
.delay-3 { animation-delay: 3s; }

/* --- CARD CONTENT STYLING --- */
.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content .icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0; /* Let padding-top handle the spacing on hover */
    color: #ffffff;
    letter-spacing: -0.5px;
}

.card-details-inner p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #b0bbc9;
    margin: 0;
}

.card-details-inner strong {
    color: #ccff00; 
    font-weight: 600;
}

/* Ambient Inner Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.bento-card:hover .card-glow {
    opacity: 1;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-web { grid-column: span 2; }
    .card-ai { grid-column: span 2; grid-row: span 1; }
    .card-google { grid-column: span 1; }
    .card-meta { grid-column: span 1; }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr; 
    }
    .card-web, .card-ai, .card-google, .card-meta {
        grid-column: span 1;
    }
    .bento-card {
        padding: 35px 25px;
    }
    /* Auto-expand text on mobile since hover isn't possible on touch */
    .card-details {
        grid-template-rows: 1fr;
    }
    .card-details-inner {
        opacity: 1;
        transform: translateY(0);
        padding-top: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d392a5f *//* ==========================================================================
   FORMINATOR FORM ID 121 - GLASS CUSTOMIZATION
   ========================================================================== */
#forminator-module-121.forminator-custom-form {
    background: transparent !important;
}

/* Inputs, Textareas, and Dropdown Boxes */
#forminator-module-121 .forminator-input,
#forminator-module-121 .forminator-textarea,
#forminator-module-121 .select2-selection--single {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 15px 20px !important;
    color: #fff !important;
    height: auto !important;
}

/* Dropdown Arrow & Placeholder */
#forminator-module-121 .select2-selection__rendered {
    color: #fff !important;
}

#forminator-module-121 .select2-selection__arrow {
    height: 100% !important;
    color: #fff !important;
}

/* Focus / Active State (The Neon Glow) */
#forminator-module-121 .forminator-input:focus,
#forminator-module-121 .forminator-textarea:focus,
#forminator-module-121 .select2-container--focus .select2-selection {
    border-color: #ccff00 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(204, 255, 0, 0.1) !important;
    outline: none !important;
}

/* Labels */
#forminator-module-121 .forminator-label {
    color: #8c97a6 !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

/* Submit Button */
#forminator-module-121 .forminator-button-submit {
    background: #ccff00 !important;
    color: #000 !important;
    font-weight: 700 !important;
    border-radius: 40px !important;
    width: 100% !important;
    padding: 18px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

#forminator-module-121 .forminator-button-submit:hover {
    background: #d4ff33 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.3) !important;
}

/* Fix for Select2 Dropdown Menu Popup (This ensures it matches the dark theme) */
.select2-container--default .select2-results__option {
    background-color: #081a36 !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: #ccff00 !important;
    color: #000 !important;
}/* End custom CSS */