/* _content/BlazorApp1/Components/Layout/MainLayout.razor.rz.scp.css */
footer[b-nz1yiwl0um] {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
    /* adjusted padding for modern look */
}

.container[b-nz1yiwl0um] {
    display: flex;
    justify-content: space-around;
}

.address[b-nz1yiwl0um] {
    line-height: 1.8;
    /* to add space between lines */
}

.column[b-nz1yiwl0um] {
    margin-left: 30px;
    /* added margin between columns */
}

.links a[b-nz1yiwl0um] {
    color: var(--color-ivory);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    /* added margin between links */
}

.links a:hover[b-nz1yiwl0um] {
    text-decoration: underline;
    color: #d4a373;
    /* Wood Color */
}

.copyright[b-nz1yiwl0um] {
    text-align: center;
    margin-top: 40px;
    /* added margin from footer content */
    border-top: 1px solid #444;
    padding-top: 20px;
}

.contact[b-nz1yiwl0um] {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .container[b-nz1yiwl0um] {
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .column[b-nz1yiwl0um] {
        margin-left: 0;
    }
}
/* _content/BlazorApp1/Components/Layout/NavMenu.razor.rz.scp.css */
nav[b-zjo6z1fhij] {
    display: flex;                      /* Displays the navigation items in a flex container */
    align-items: center;                /* Aligns items along the cross axis (vertically) */
    justify-content: space-between;     /* Adds space between items to evenly distribute them along the main axis (horizontally) */
    padding: 10px 8%;
}

.logo-container[b-zjo6z1fhij] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.logo[b-zjo6z1fhij]{
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}

.logo a[b-zjo6z1fhij]{
    text-decoration: none;
    cursor: pointer;
    color: var(--color-anthracite);
}

img[b-zjo6z1fhij] {
    max-width: 60px; /* Adjust the size of the image */
    height: auto;
}

 ul li[b-zjo6z1fhij] {
    list-style-type: none;              /* Removes default list item bullets */
    display: inline-block;              /* Displays list items as inline-block elements */
    padding: 10px 25px;                 /* Adds padding to create spacing around each list item */
}

 ul li a[b-zjo6z1fhij] {
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--color-anthracite);
}

 ul li a:hover[b-zjo6z1fhij] {
    color: #d29e2e;
    transition: .2s;
}

/* Dropdown content (hidden by default) */
.dropdown-content[b-zjo6z1fhij] {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content[b-zjo6z1fhij] {
    display: block;
}

.dropdown-content a[b-zjo6z1fhij] {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.mobile[b-zjo6z1fhij]{
    display: none;
}

.responsive[b-zjo6z1fhij]{
    display: none;
}

i[b-zjo6z1fhij]{
    color: black;
}

@media screen and (max-width: 1000px) {
    .mobile[b-zjo6z1fhij]{
        display: block;
    }

    .desktop[b-zjo6z1fhij]{
        display: none;
    }

    ul li[b-zjo6z1fhij] {
        display: block;              /* Displays list items as inline-block elements */
    }

    .logo[b-zjo6z1fhij]{
        font-size: 17.5px;
    }

    img[b-zjo6z1fhij] {
        max-width: 30px; /* Adjust the size of the image */
    }
}
/* _content/BlazorApp1/Components/Pages/Home.razor.rz.scp.css */
html[b-qq7g8le84l] {
    scroll-behavior: smooth;
}

section[b-qq7g8le84l] {
    scroll-margin-top: 80px;
    /* Offset for sticky header */
    padding: 120px 0;
    /* More breathing room */
}

/* Hero Section */
.hero[b-qq7g8le84l] {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/hero-background.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content[b-qq7g8le84l] {
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.content h4[b-qq7g8le84l] {
    font-size: 4rem;
    /* Larger hero text */
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.btn-main[b-qq7g8le84l] {
    background-color: #4a7c59;
    /* Forest Green */
    color: white;
    padding: 18px 50px;
    /* Larger button */
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 5px;
    /* Less rounded for rugged look */
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.btn-main:hover[b-qq7g8le84l] {
    background-color: transparent;
    border-color: #4a7c59;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

/* General Layout */
.container[b-qq7g8le84l] {
    width: 90%;
    max-width: 1400px;
    /* Limit max width for large screens */
    margin: 0 auto;
}

/* About Section */
.about[b-qq7g8le84l] {
    background-color: #2b2b2b;
    /* Dark Gray */
    color: #e0e0e0;
}

.about .main[b-qq7g8le84l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    /* Larger gap between text and image */
}

.about h1[b-qq7g8le84l] {
    color: #d4a373;
    /* Wood Color */
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about h1[b-qq7g8le84l]::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #4a7c59;
    /* Forest Green */
    margin-top: 10px;
}

.about-text[b-qq7g8le84l] {
    flex: 1;
    min-width: 350px;
}

.about-text p[b-qq7g8le84l] {
    font-size: 1.15rem;
    line-height: 1.8;
    /* Better readability */
    margin-bottom: 25px;
    color: #ccc;
}

.certifications[b-qq7g8le84l] {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle background */
    border-radius: 5px;
    border-left: 3px solid #d4a373;
    /* Wood Accent */
}

.certifications h3[b-qq7g8le84l] {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.certifications ul[b-qq7g8le84l] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certifications li[b-qq7g8le84l] {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.certifications i[b-qq7g8le84l] {
    color: #4a7c59;
    /* Forest Green */
    margin-right: 15px;
    font-size: 1.2rem;
}

.highlight-text[b-qq7g8le84l] {
    font-weight: 500;
    color: white;
    border-left: 5px solid #4a7c59;
    /* Forest Green */
    padding-left: 20px;
    margin-top: 30px;
    font-size: 1.2rem;
}

/* Services Section */
.service[b-qq7g8le84l] {
    background-color: #1a1a1a;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23262626' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.heading h1[b-qq7g8le84l] {
    color: white;
    font-size: 3rem;
    margin-bottom: 70px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.heading[b-qq7g8le84l] {
    text-align: center;
}

.heading h1[b-qq7g8le84l]::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d4a373;
    /* Wood */
    margin: 15px auto 0;
}

.row[b-qq7g8le84l] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    /* Increased gap */
}

.card[b-qq7g8le84l] {
    background: #252525;
    color: #fff;
    border-radius: 5px;
    width: 350px;
    flex-grow: 1;
    max-width: 400px;
    padding: 40px;
    /* Increased padding */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
}

.card:hover[b-qq7g8le84l] {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #d4a373;
    /* Wood */
}

.card-header[b-qq7g8le84l] {
    text-align: center;
    margin-bottom: 25px;
}

.card-header i[b-qq7g8le84l] {
    font-size: 50px;
    color: #d4a373;
    /* Wood */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card-header h2[b-qq7g8le84l] {
    font-size: 1.6rem;
    font-weight: 700;
}

.card-body p[b-qq7g8le84l] {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    color: #ddd;
}

.card-body ul[b-qq7g8le84l] {
    text-align: left;
    padding-left: 20px;
    color: #ccc;
}

.card-body li[b-qq7g8le84l] {
    margin-bottom: 8px;
}

/* Price Section */
.price[b-qq7g8le84l] {
    background-color: #2b2b2b;
    color: white;
}

.price .main[b-qq7g8le84l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.price-text[b-qq7g8le84l] {
    flex: 1;
    min-width: 350px;
}

.price h1[b-qq7g8le84l] {
    color: #d4a373;
    /* Wood */
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.price h1[b-qq7g8le84l]::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #4a7c59;
    /* Green */
    margin-top: 10px;
}

.cta-box[b-qq7g8le84l] {
    background: linear-gradient(135deg, #d4a373, #a9845b);
    /* Wood Gradient */
    padding: 40px;
    border-radius: 5px;
    margin-top: 40px;
    text-align: center;
    color: #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-box h2[b-qq7g8le84l] {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.3;
}

.btn-cta[b-qq7g8le84l] {
    background-color: #2b2b2b;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover[b-qq7g8le84l] {
    background-color: white;
    color: #2b2b2b;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section[b-qq7g8le84l] {
    background-color: #1a1a1a;
    color: white;
    padding-bottom: 100px;
}

.contact-content[b-qq7g8le84l] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.contact-info[b-qq7g8le84l] {
    flex: 1;
    min-width: 300px;
    background: #252525;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid #333;
}

.contact-info h2[b-qq7g8le84l] {
    color: #d4a373;
    /* Wood */
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info h3[b-qq7g8le84l] {
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-info p[b-qq7g8le84l] {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info strong[b-qq7g8le84l] {
    min-width: 100px;
    color: #888;
}

.contact-info a[b-qq7g8le84l] {
    color: white;
    text-decoration: none;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
}

.contact-info a:hover[b-qq7g8le84l] {
    color: #4a7c59;
    /* Green */
    border-color: #4a7c59;
}

/* Image Placeholder Style */
.image-placeholder[b-qq7g8le84l] {
    width: 450px;
    height: 350px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    border: 2px dashed #555;
    border-radius: 5px;
    flex-shrink: 0;
    transition: 0.3s;
}

.image-placeholder:hover[b-qq7g8le84l] {
    border-color: #d4a373;
    color: #d4a373;
    background-color: #333;
}

.contact-map[b-qq7g8le84l] {
    width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    section[b-qq7g8le84l] {
        padding: 80px 0;
    }

    .content h4[b-qq7g8le84l] {
        font-size: 3rem;
    }

    .row[b-qq7g8le84l] {
        gap: 30px;
    }

    .about .main[b-qq7g8le84l],
    .price .main[b-qq7g8le84l],
    .contact-content[b-qq7g8le84l] {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    section[b-qq7g8le84l] {
        padding: 60px 0;
        scroll-margin-top: 60px;
    }

    .about .main[b-qq7g8le84l],
    .price .main[b-qq7g8le84l],
    .contact-content[b-qq7g8le84l] {
        flex-direction: column;
        text-align: center;
    }

    .about-text[b-qq7g8le84l],
    .price-text[b-qq7g8le84l],
    .contact-info[b-qq7g8le84l] {
        width: 100%;
        padding: 20px;
    }

    .highlight-text[b-qq7g8le84l] {
        border-left: none;
        border-top: 4px solid #4a7c59;
        padding-left: 0;
        padding-top: 15px;
    }

    .certifications li[b-qq7g8le84l] {
        justify-content: center;
    }

    .image-placeholder[b-qq7g8le84l] {
        width: 100%;
        height: 250px;
        max-width: 500px;
    }

    .contact-map[b-qq7g8le84l] {
        width: 100%;
        height: 250px;
        max-width: 500px;
    }

    .card[b-qq7g8le84l] {
        width: 100%;
        max-width: 500px;
    }

    .content h4[b-qq7g8le84l] {
        font-size: 2.5rem;
    }

    .about h1[b-qq7g8le84l],
    .heading h1[b-qq7g8le84l],
    .price h1[b-qq7g8le84l] {
        font-size: 2.2rem;
    }

    .about h1[b-qq7g8le84l]::after,
    .heading h1[b-qq7g8le84l]::after,
    .price h1[b-qq7g8le84l]::after {
        margin: 10px auto;
    }

    .contact-info strong[b-qq7g8le84l] {
        display: block;
        margin-bottom: 5px;
    }

    .contact-info p[b-qq7g8le84l] {
        flex-direction: column;
        align-items: center;
    }
}

/* ======================== */
/* Modal & Form Styles      */
/* ======================== */

.modal-overlay[b-qq7g8le84l] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-qq7g8le84l 0.25s ease;
    padding: 20px;
}

@keyframes fadeIn-b-qq7g8le84l {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-qq7g8le84l {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-container[b-qq7g8le84l] {
    background: #252525;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    animation: slideUp-b-qq7g8le84l 0.3s ease;
}

.modal-header[b-qq7g8le84l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px 24px;
    border-bottom: 1px solid #333;
}

.modal-header h2[b-qq7g8le84l] {
    color: #d4a373;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-close[b-qq7g8le84l] {
    background: none;
    border: none;
    color: #888;
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}

.modal-close:hover[b-qq7g8le84l] {
    color: white;
    transform: scale(1.2);
}

.modal-body[b-qq7g8le84l] {
    padding: 32px 40px 40px;
}

.form-group[b-qq7g8le84l] {
    margin-bottom: 26px;
    text-align: center;
}

.form-group label[b-qq7g8le84l] {
    display: block;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

[b-qq7g8le84l] .form-input,
[b-qq7g8le84l] .form-textarea {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
    padding: 16px 20px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
    font-size: 1.1rem;
    font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    box-sizing: border-box;
}

[b-qq7g8le84l] .form-input:hover,
[b-qq7g8le84l] .form-textarea:hover {
    border-color: #555;
    background: #1e1e1e;
}

[b-qq7g8le84l] .form-input:focus,
[b-qq7g8le84l] .form-textarea:focus {
    outline: none;
    border-color: #d4a373;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
    background: #1e1e1e;
}

[b-qq7g8le84l] .form-input::placeholder,
[b-qq7g8le84l] .form-textarea::placeholder {
    color: #666;
    font-size: 1.05rem;
}

.form-textarea[b-qq7g8le84l] {
    resize: vertical;
    min-height: 130px;
}

.file-upload-area[b-qq7g8le84l] {
    position: relative;
    border: 2px dashed #444;
    border-radius: 6px;
    padding: 32px 20px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    background: #1a1a1a;
    cursor: pointer;
    max-width: 480px;
    margin: 0 auto;
}

.file-upload-area:hover[b-qq7g8le84l] {
    border-color: #d4a373;
    background: #222;
}

.file-upload-area input[type="file"][b-qq7g8le84l] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-hint[b-qq7g8le84l] {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
    pointer-events: none;
}

.upload-hint i[b-qq7g8le84l] {
    color: #d4a373;
    margin-right: 8px;
    font-size: 1.1rem;
}

.file-list[b-qq7g8le84l] {
    list-style: none;
    padding: 0;
    margin: 12px auto 0;
    max-width: 480px;
    text-align: left;
}

.file-list li[b-qq7g8le84l] {
    color: #ccc;
    font-size: 0.9rem;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-list i[b-qq7g8le84l] {
    color: #4a7c59;
}

.file-size[b-qq7g8le84l] {
    color: #666;
    font-size: 0.8rem;
}

.btn-submit[b-qq7g8le84l] {
    width: 100%;
    max-width: 480px;
    margin: 12px auto 0;
    display: block;
    padding: 18px;
    background: #4a7c59;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-submit:hover:not(:disabled)[b-qq7g8le84l] {
    background: #5a9a6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.35);
}

.btn-submit:disabled[b-qq7g8le84l] {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message[b-qq7g8le84l] {
    text-align: center;
    padding: 30px 10px;
}

.success-message i[b-qq7g8le84l] {
    font-size: 3.5rem;
    color: #4a7c59;
    margin-bottom: 18px;
    display: block;
}

.success-message h3[b-qq7g8le84l] {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-message p[b-qq7g8le84l] {
    color: #aaa;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.error-message[b-qq7g8le84l] {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.35);
    color: #f08080;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Modal responsive */
@media screen and (max-width: 768px) {
    .modal-container[b-qq7g8le84l] {
        max-width: 100%;
        max-height: 95vh;
    }

    .modal-header[b-qq7g8le84l] {
        padding: 20px 20px 16px;
    }

    .modal-header h2[b-qq7g8le84l] {
        font-size: 1.3rem;
    }

    .modal-body[b-qq7g8le84l] {
        padding: 20px;
    }
}

/* Button reset for .btn-cta when used as button */
button.btn-cta[b-qq7g8le84l] {
    border: none;
    cursor: pointer;
    font-family: inherit;
}
