/*
Theme Name: Farm Aid H-2A Theme
Author: Custom Dev
Description: Custom theme for Farm Aid H-2A LLC based on approved layout.
Version: 1.0
*/

:root {
    --primary-red: #D71920;
    --primary-black: #111111;
    --text-dark: #333333;
    --text-grey: #666666;
    --bg-light: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { line-height: 1.6; color: var(--text-dark); background-color: white; font-family: "poppins"; }
p {
    font-size: 18px !important;
}

/* --- Top Bar & Header --- */
.top-bar { background-color: var(--primary-black); color: white; padding: 10px 5%; display: flex; justify-content: space-between; font-size: 13px; }
.top-bar a { color: white; text-decoration: none; margin-left: 20px; }
.top-bar i { color: var(--primary-red); margin-right: 5px; }

header { background: white; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 15px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.logo { font-size: 26px; font-weight: 900; color: var(--primary-black); text-transform: uppercase; letter-spacing: -1px; text-decoration: none; }
.logo span { color: var(--primary-red); }

/* WordPress Menu Styling */
.main-navigation ul { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; }
.main-navigation a { text-decoration: none; color: var(--primary-black); font-weight: 700; font-size: 18px; text-transform: uppercase; transition: 0.3s; }
.main-navigation a:hover { color: var(--primary-red); }

.btn-cta { background-color: var(--primary-red); color: white; padding: 12px 25px; text-decoration: none; font-weight: 700; border-radius: 4px; text-transform: uppercase; font-size: 13px; transition: 0.3s; }
.btn-cta:hover { background-color: #b00e15; }

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; padding: 0 20px;
}
.hero h1 { font-size: 52px; font-weight: 900; margin-bottom: 15px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 20px; margin-bottom: 40px; max-width: 700px; font-weight: 300; }

.search-box { background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); padding: 15px; border-radius: 6px; display: flex; gap: 10px; border: 1px solid rgba(255,255,255,0.3); }
.search-box input { padding: 15px; border: none; border-radius: 3px; width: 300px; font-size: 14px; }
.search-box button { background: var(--primary-red); color: white; border: none; padding: 0 30px; font-weight: bold; border-radius: 3px; cursor: pointer; text-transform: uppercase; }

/* --- Sections Common --- */
.section-padding { padding: 80px 5%; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.section-title { font-size: 36px; font-weight: 900; color: var(--primary-black); margin-bottom: 20px; text-transform: uppercase; }
.intro-text { max-width: 900px; margin: 0 auto; color: var(--text-grey); font-size: 16px; }

/* --- Process Grid --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.process-card { background: white; padding: 40px 30px; border-radius: 4px; border-bottom: 5px solid transparent; transition: 0.3s; position: relative; }
.process-card:hover { border-bottom: 5px solid var(--primary-red); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.step-number { font-size: 60px; font-weight: 900; color: #eee; position: absolute; top: 10px; right: 20px; line-height: 1; }
.process-icon { font-size: 32px; color: var(--primary-red); margin-bottom: 20px; }
.process-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; }

/* --- Benefits --- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.benefit-icon-box { min-width: 60px; height: 60px; background: var(--primary-black); color: var(--primary-red); display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: 50%; }
.benefit-content h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }

/* --- Testimonials --- */
.testimonials { background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); background-attachment: fixed; background-size: cover; padding: 100px 5%; color: white; position: relative; text-align: center; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); }
.testimonial-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.quote-icon { font-size: 40px; color: var(--primary-red); margin-bottom: 20px; }
.review-text { font-size: 22px; font-style: italic; margin-bottom: 30px; line-height: 1.6; }
.client-name { font-weight: 900; font-size: 16px; text-transform: uppercase; color: var(--primary-red); }

/* --- FAQ --- */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; margin-top: 40px; }
.faq-item { background: white; padding: 30px; border-left: 4px solid var(--primary-red); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.faq-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--primary-black); }

/* --- Agencies --- */
.agencies-section { background: var(--primary-black); color: white; padding: 60px 5%; text-align: center; }
.agency-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px;}
.agency-btn { border: 2px solid var(--primary-red); color: white; padding: 10px 25px; text-decoration: none; font-weight: bold; transition: 0.3s; display: inline-block; }
.agency-btn:hover { background: var(--primary-red); }

/* --- Footer General --- */
footer {
    background: #0a0a0a;
    color: #888;
    padding: 60px 5% 20px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 3px solid #D71920; /* Red Line */
    padding-left: 10px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* --- 1. CONTACT INFO LIST STYLING --- */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start; /* Align icons to top of text */
    gap: 12px;
    color: #888;
}

.contact-list li i {
    color: #D71920; /* Red Icon */
    margin-top: 4px; /* Icon adjustment */
    width: 16px;
    text-align: center;
}

.contact-list a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.contact-list a:hover {
    color: #fff;
}

/* --- 2. QUICK LINKS (MENU LIST STYLE) --- */
.arrow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arrow-list li {
    border-bottom: 1px solid #222; /* Dark divider line */
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.arrow-list li:last-child {
    border-bottom: none; /* Remove line from last item */
    margin-bottom: 0;
    padding-bottom: 0;
}

.arrow-list a {
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Arrow Icon Styling */
.arrow-list a i {
    color: #D71920; /* Red Arrow */
    font-size: 10px;
    margin-right: 10px;
    transition: margin-right 0.3s ease;
}

/* Hover Effect */
.arrow-list a:hover {
    color: #fff; /* Text becomes white */
    padding-left: 5px; /* Slight slide effect */
}

.arrow-list a:hover i {
    margin-right: 15px; /* Arrow moves slightly away */
}

/* --- 3. SOCIAL ICONS --- */
.s-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #222;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.s-icon:hover {
    background: #D71920;
    color: #fff;
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar { flex-direction: column; text-align: center; gap: 10px; }
    header { flex-direction: column; gap: 20px; }
    .hero h1 { font-size: 32px; }
    .search-box { flex-direction: column; width: 100%; }
    .search-box input { width: 100%; }
}




/* --- About Page Specific Styles --- */

/* Page Banner */
.page-banner {
    background: url('https://farmaidh2a.liquidexim.tech/wp-content/uploads/2025/11/young-indian-agronomist-standing.webp');
    background-size: cover;
    background-position: center;
    height: 50vh; /* Smaller than Home hero */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); /* Dark overlay */
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Split Layout (Text Left, Image Right) */
.about-split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text-col {
    flex: 1;
    min-width: 300px;
}

.small-heading {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-image-col {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image-col img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.exp-box {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--primary-red);
    color: white;
    padding: 20px 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.exp-box span { display: block; font-size: 12px; opacity: 0.9; }
.exp-box strong { font-size: 18px; text-transform: uppercase; }
.p-cat {
    font-size: 11px;
    background: #eee;
    padding: 2px 8px;
    border-radius: 10px;
    color: #555;
    margin-left: 10px;
}

/* Values Section (Dark) */
.values-section {
    background-color: var(--primary-black);
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(255,255,255,0.05); /* Slight see-through */
    padding: 40px 30px;
    border-radius: 4px;
    border-top: 4px solid var(--primary-red);
    transition: 0.3s;
}

.value-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    color: #ccc;
    font-size: 14px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .page-banner { height: 40vh; }
    .banner-content h1 { font-size: 32px; }
    .exp-box { left: 10px; bottom: 10px; padding: 15px; }
    .about-split-container { flex-direction: column; }
}
/* --- Contact Page Styles --- */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0; /* Icon shrink hone se rokne ke liye */
}

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.info-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.info-item a:hover {
    color: var(--primary-red);
}

/* Contact Form Styles */
.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.form-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-red);
}

.form-box h3 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--primary-black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    outline: none;
}

/* Map Section */
.map-section {
    margin-bottom: -10px; /* Removes tiny white space at bottom */
    filter: grayscale(100%); /* Professional black & white map look */
}

.map-section:hover {
    filter: grayscale(0%); /* Color on hover */
    transition: 0.5s;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .form-box {
        padding: 25px;
    }
}

/* --- Career Portal Layout (Screenshot Style) --- */

.portal-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Left Sidebar --- */
.portal-sidebar {
    flex: 0 0 280px; /* Fixed width sidebar */
    background: transparent;
}

.sidebar-header {
    background-color: var(--primary-red); /* Client Red */
    color: white;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.sidebar-box {
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    padding: 15px;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.filter-group:last-child {
    border-bottom: none;
}

.sidebar-box label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #555;
}

.form-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #f9f9f9;
    font-size: 13px;
}

.sidebar-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-reset {
    flex: 1;
    background: #ddd;
    border: 1px solid #ccc;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.btn-search {
    flex: 1;
    background: #555;
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.btn-search:hover { background: #333; }

.btn-alert {
    width: 100%;
    background: #777; /* Dark Grey */
    color: white;
    border: none;
    padding: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-alert:hover { background: #555; }

/* --- Right Content Area --- */
.portal-content {
    flex: 1; /* Takes remaining space */
}

.quick-search-box {
    position: relative;
    margin-bottom: 30px;
}

.quick-search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.quick-search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
}

.portal-intro {
    background: white;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
}

.portal-intro p { margin-bottom: 15px; }
.portal-intro a { color: var(--primary-red); text-decoration: none; font-weight: bold; }
.portal-intro hr { border: 0; border-top: 1px solid #eee; margin: 20px 0; }

.talent-link {
    margin-top: 20px;
    font-weight: 500;
}

/* Job Cards List Style */
.job-results-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portal-job-card {
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-left: 4px solid transparent;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.portal-job-card:hover {
    border-left-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.job-main-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.job-main-info h3 a {
    color: var(--primary-black); /* Black Title */
    text-decoration: none;
}

.job-main-info h3 a:hover { color: var(--primary-red); }

.p-location, .p-type {
    font-size: 12px;
    color: #666;
    display: inline-block;
    margin-right: 15px;
}

.p-location::before { content: '\f3c5'; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 5px; color: var(--primary-red); }

.job-date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .portal-layout {
        flex-direction: column;
    }
    .portal-sidebar {
        width: 100%;
        flex: none;
    }
    .portal-job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* --- Get Started Form Styles --- */

.form-container-large {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 6px solid var(--primary-red); /* Branding Touch */
}

.custom-app-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-black);
    margin-bottom: 8px;
}

/* Inputs styling */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    background-color: #fbfbfb;
    font-family: 'Roboto', sans-serif;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-red);
    background-color: white;
    outline: none;
    box-shadow: 0 0 5px rgba(215, 25, 32, 0.2);
}

/* Row Layouts */
.form-row-split {
    display: flex;
    gap: 20px;
}
.form-row-split .form-group {
    flex: 1;
}

.form-row-triple {
    display: flex;
    gap: 20px;
}
.form-row-triple .form-group {
    flex: 1;
}

/* Checkboxes Styling */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    font-weight: 500 !important;
    color: #555 !important;
    cursor: pointer;
}

.checkbox-item input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Submit Button Area */
.form-footer {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container-large {
        padding: 25px;
    }
    .form-row-split,
    .form-row-triple {
        flex-direction: column;
        gap: 0;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}


/* --- Custom Logo CSS --- */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link img {
    max-height: 70px; /* Logo ki height control karne ke liye */
    width: auto;      /* Ratio kharab nahi hoga */
    display: block;
}






/* --- Footer Logo White Fix --- */

footer .custom-logo-link img {
    /* Ye magic line Black logo ko White bana degi */
    filter: brightness(0) invert(1); 
    
    /* Logo ka size footer me thoda control karne ke liye */
        filter: brightness(0) invert(1);
    max-height: 129px;
    width: auto;
}
}
/* --- BLOG & SINGLE PAGE LAYOUT --- */

.blog-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-main-area {
    flex: 2; /* 70% width */
}

.blog-sidebar {
    flex: 1; /* 30% width */
    min-width: 300px;
}

/* --- GRID SYSTEM (For Blog Page) --- */
.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns Grid */
    gap: 30px;
}

.blog-card.grid-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card.grid-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.blog-thumb-grid {
    height: 200px;
    overflow: hidden;
}

.blog-thumb-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title-grid {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-title-grid a { text-decoration: none; color: #111; transition: 0.3s; }
.blog-title-grid a:hover { color: var(--primary-red); }

.blog-meta.small {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
.blog-meta.small i { color: var(--primary-red); }

.excerpt-grid {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.read-more-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    text-transform: uppercase;
}

/* --- SIDEBAR STYLING --- */
.widget {
    background: white;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 900;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #111;
}

/* Search */
.search-form { display: flex; }
.search-field { width: 100%; padding: 10px; border: 1px solid #ddd; }
.search-submit { background: var(--primary-red); color: white; border: none; padding: 0 15px; cursor: pointer; }

/* Lists (Categories/Recent) */
.widget ul { list-style: none; padding: 0; }
.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
}
.widget ul li a { text-decoration: none; color: #444; font-weight: 500; transition: 0.2s; }
.widget ul li a:hover { color: var(--primary-red); padding-left: 5px; }

.recent-list .date { display: block; font-size: 11px; color: #999; margin-top: 3px; }

/* --- SINGLE POST STYLING --- */
.post-box-single {
    background: white;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}
.single-img img { width: 100%; height: auto; border-radius: 6px; margin-bottom: 30px; }
.entry-content { font-size: 16px; line-height: 1.8; color: #333; }
.entry-content p { margin-bottom: 20px; }
.post-footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }

/* Responsive */
@media (max-width: 768px) {
    .blog-layout { flex-direction: column; }
    .blog-grid-container { grid-template-columns: 1fr; } /* Mobile 1 Column */
    .blog-sidebar { width: 100%; }
}


/* --- Hiring Hub Section (Black & White Theme) --- */

.hiring-hub-section {
    position: relative;
    padding: 100px 0;
    /* Background Image Set Here */
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    color: white;
}

/* Black Overlay to make text readable */
.hub-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* 85% Black Overlay */
    z-index: 1;
}

/* Container setup */
.hiring-hub-section .auto-container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.hub-header { margin-bottom: 50px; }
.hub-subtitle { 
    color: #D71920; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; display: block; margin-bottom: 10px; 
}
.hub-header h2 { font-size: 40px; font-weight: 900; color: white; margin-bottom: 10px; }
.hub-header p { color: #ccc; font-size: 16px; }

/* Layout Grid */
.hub-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* --- LEFT: Job Listings --- */
.job-listings-col {
    flex: 1;
}
.col-title {
    font-size: 24px; margin-bottom: 25px; border-bottom: 1px solid #333; padding-bottom: 10px; color: white;
}

.bw-job-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05); /* Transparent White */
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: 0.3s;
}

.bw-job-card:hover {
    background: white;
    transform: translateX(10px);
}

/* Hover Effects Logic: Text turns black on hover */
.bw-job-card:hover h4 { color: #111; }
.bw-job-card:hover span { color: #555; }
.bw-job-card:hover .bw-icon { background: #D71920; color: white; border-color: #D71920; }

.bw-icon {
    width: 50px; height: 50px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; margin-right: 20px; transition: 0.3s;
}

.bw-info { flex: 1; }
.bw-info h4 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 5px; transition: 0.3s; }
.bw-info span { font-size: 13px; color: #aaa; transition: 0.3s; }

.bw-btn-outline {
    color: white; border: 1px solid white; padding: 8px 20px; text-decoration: none; font-size: 12px; font-weight: 700; text-transform: uppercase; transition: 0.3s;
}
.bw-job-card:hover .bw-btn-outline {
    background: #111; color: white; border-color: #111;
}

.link-arrow { color: #D71920; text-decoration: none; font-weight: 700; margin-top: 10px; display: inline-block; }

/* --- RIGHT: Employer Box --- */
.employer-action-col {
    flex: 0 0 40%; /* 40% Width */
}

.employer-box {
    background: white; /* White Box */
    padding: 40px;
    border-radius: 6px;
    color: #111; /* Black Text */
    text-align: center;
    border-top: 5px solid #D71920;
}

.emp-icon {
    font-size: 40px; color: #D71920; margin-bottom: 20px;
}

.employer-box h3 { font-size: 28px; font-weight: 900; margin-bottom: 15px; }
.employer-box p { color: #555; font-size: 15px; line-height: 1.6; margin-bottom: 25px; }

.emp-benefits { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; margin-left: 20px; }
.emp-benefits li { margin-bottom: 10px; font-weight: 500; font-size: 14px; }
.emp-benefits li i { color: #D71920; margin-right: 10px; }

.bw-btn-solid {
    display: block; width: 100%;
    background: #111; color: white;
    padding: 15px; text-decoration: none; font-weight: 700; text-transform: uppercase;
    transition: 0.3s;
}
.bw-btn-solid:hover { background: #D71920; }

/* Responsive */
@media (max-width: 991px) {
    .hub-layout { flex-direction: column; }
    .employer-action-col { width: 100%; }
}

/* --- FIXED CENTERED CONTACT SECTION --- */

.home-consult-section {
    padding: 80px 0;
    /* Background Image peeche rahegi */
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* IMPORTANT: Ye Container content ko beech me rakhta hai */
.std-container {
    max-width: 1140px;
    margin: 0 5%;
   
}
/* Main Box Wrapper */
.consult-box-wrapper {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); /* Strong Shadow */
}

/* --- LEFT SIDE: Red Info --- */
.consult-info-side {
    flex: 0 0 40%; /* 40% Width */
    background: #D71920; /* Farm Aid Red */
    padding: 50px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consult-info-side h3 {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
    color: white;
}

.consult-info-side h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.consult-info-side p {
    font-size: 15px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.c-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.c-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-row i {
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.c-row span { font-size: 12px; display: block; opacity: 0.8; }
.c-row strong { font-size: 16px; font-weight: 700; }


/* --- RIGHT SIDE: White Form --- */
.consult-form-side {
    flex: 1; /* Remaining Width */
    background: white;
    padding: 50px;
}

.form-grid {
    display: flex;
    gap: 20px;
}

.f-group {
    flex: 1;
    margin-bottom: 20px;
}

.f-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.f-group input, 
.f-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    font-family: 'Roboto', sans-serif;
}

.f-group input:focus, 
.f-group textarea:focus {
    border-color: #D71920;
    background: white;
    outline: none;
}

.btn-submit-full {
    width: 100%;
    background: #111;
    color: white;
    border: none;
    padding: 15px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-submit-full:hover {
    background: #D71920;
}
/* --- White Links for Contact Section --- */
.white-link {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.white-link:hover {
    color: #ffcccc; /* Hover par halka pink/white effect */
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .consult-box-wrapper {
        flex-direction: column;
    }
    .form-grid {
        flex-direction: column;
        gap: 0;
    }
}

/* --- PREMIUM DARK TRANSPORTATION SECTION --- */

.transport-dark-section {
    padding: 100px 0;
    background-color: #111; /* Deep Black Background */
    color: white;
    position: relative;
    overflow: hidden;
}

/* Layout */
.td-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* --- Left Side --- */
.td-content {
    flex: 1;
}

.td-tag {
    display: inline-block;
    color: #D71920;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 15px;
    border-left: 3px solid #D71920;
    padding-left: 10px;
}

.td-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

.td-desc {
    color: #aaa; /* Light Grey Text */
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.6;
}

/* Feature Cards (Instead of simple list) */
.td-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.td-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05); /* Transparent White */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: 0.3s;
}

.td-card:hover {
    background: rgba(215, 25, 32, 0.1); /* Red Tint on Hover */
    border-color: #D71920;
    transform: translateX(10px);
}

.td-icon {
    width: 50px;
    height: 50px;
    background: #D71920;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.td-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.td-card p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* CTA Button */
.btn-red-glow {
    display: inline-block;
    background: #D71920;
    color: white;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(215, 25, 32, 0.4); /* Red Glow */
    transition: 0.3s;
}

.btn-red-glow:hover {
    background: white;
    color: #D71920;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* --- FIXED: Image & Red Box Alignment --- */

.td-image-box {
    flex: 1;
    position: relative; /* Isse hum elements ko control karenge */
    margin-left: 50px;  /* Text se thodi doori */
    margin-top: 20px;   /* Thoda breathing space upar */
}

/* 1. Image Styling */
.td-image-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 2; /* Image sabse upar rahegi */
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Image ke neeche shadow */
}

/* 2. Red Border Styling (Correction) */
.red-backdrop {
    position: absolute;
    
    /* Ye settings border ko image ke size ka banayengi */
    width: 100%; 
    height: 100%;
    
    /* Ye border ko thoda sa "Offset" (Tircha) karega style ke liye */
    top: -15px;  
    right: -15px; 
    
    /* Styling */
    border: 2px solid #D71920; /* Red Border */
    border-radius: 8px;
    z-index: 1; /* Ye image ke PEECHE rahega */
}

/* Mobile Responsive Fix */
@media (max-width: 991px) {
    .td-image-box {
        margin-left: 0;
        margin-top: 40px;
        width: 90%; /* Mobile pe thoda chota taaki border na kate */
        margin-right: auto; /* Center align */
    }
    .red-backdrop {
        top: -10px;
        right: -10px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .td-row {
        flex-direction: column;
    }
    .red-backdrop {
        transform: translate(10px, -10px);
    }
}

/* =========================================
   BLOG & SINGLE PAGE STYLES (PREMIUM DARK)
========================================= */

/* --- Common Variables --- */
:root {
    --farm-red: #ce1126;
    --farm-dark: #0a0a0a;
    --farm-card-bg: #151515;
    --farm-border: #2a2a2a;
    --farm-text: #ddd;
}

/* 1. HERO SECTIONS */
.blog-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 100%);
    padding: 120px 0 80px;
    border-bottom: 1px solid var(--farm-border);
}

.blog-header-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-header-content p {
    color: #aaa;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    color: var(--farm-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

/* 2. BLOG FEED */
.blog-feed-section {
    background-color: var(--farm-dark);
    padding: 80px 0;
}

/* Featured Card (1st Post) */
.featured-blog-card {
    display: flex;
    background: var(--farm-card-bg);
    border: 1px solid var(--farm-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.featured-blog-card:hover {
    border-color: var(--farm-red);
    transform: translateY(-5px);
}

.fbc-image {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.fbc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.featured-blog-card:hover .fbc-image img { transform: scale(1.05); }

.fbc-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--farm-red);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.fbc-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fbc-content h2 a {
    color: #fff;
    text-decoration: none;
    font-size: 2.2rem;
    transition: 0.3s;
    line-height: 1.2;
}

.fbc-content h2 a:hover { color: var(--farm-red); }

.meta-info {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.meta-info i { color: var(--farm-red); margin-right: 5px; }
.meta-info span { margin-right: 15px; }

.btn-read-more {
    margin-top: 20px;
    display: inline-block;
    color: var(--farm-red);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--farm-red);
    padding: 10px 25px;
    border-radius: 6px;
    align-self: flex-start;
    transition: 0.3s;
}

.btn-read-more:hover {
    background: var(--farm-red);
    color: #fff;
}

/* Standard Grid Cards */
.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.standard-blog-card {
    background: var(--farm-card-bg);
    border: 1px solid var(--farm-border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.standard-blog-card:hover {
    border-color: var(--farm-red);
    transform: translateY(-5px);
}

.sbc-image {
    height: 220px;
    overflow: hidden;
}

.sbc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.standard-blog-card:hover .sbc-image img { transform: scale(1.1); }

.sbc-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.meta-info-small {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.sbc-content h3 a {
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    transition: 0.3s;
}

.sbc-content h3 a:hover { color: var(--farm-red); }

.link-arrow {
    margin-top: auto;
    padding-top: 15px;
    color: var(--farm-red);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Pagination */
.blog-pagination-area {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid var(--farm-border);
    padding-top: 40px;
}

.blog-pagination-area .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-numbers {
    background: var(--farm-card-bg);
    color: #fff;
    border: 1px solid var(--farm-border);
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.page-numbers.current, .page-numbers:hover {
    background: var(--farm-red);
    border-color: var(--farm-red);
}

/* 3. SINGLE POST STYLES */
.single-hero-section {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, #0a0a0a 100%);
}

.single-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.sh-cats a {
    background: var(--farm-red);
    color: #fff;
    text-decoration: none;
    padding: 4px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    margin-right: 10px;
}

.single-hero-content h1 {
    font-size: 3.2rem;
    color: #fff;
    margin: 15px 0;
    line-height: 1.1;
}

.sh-meta {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
}
.sh-meta .sep { margin: 0 10px; color: var(--farm-red); }
.sh-meta i { color: var(--farm-red); margin-right: 5px; }

.single-body-section {
    background: var(--farm-dark);
    padding: 60px 0;
}

.single-layout-row {
    display: flex;
    gap: 50px;
}

.single-article-box {
    flex: 2.5;
    background: var(--farm-card-bg);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--farm-border);
}

.article-content {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2, .article-content h3 {
    color: #fff;
    margin-top: 35px;
    margin-bottom: 15px;
}

.article-content p { margin-bottom: 20px; }

.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--farm-border);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.post-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.post-navigation a:hover { color: var(--farm-red); }

/* Sidebar */
.single-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--farm-card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--farm-border);
}

.sidebar-widget h4 {
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--farm-red);
    display: inline-block;
    padding-bottom: 5px;
}

.recent-list { padding: 0; margin: 0; list-style: none; }
.recent-list li { margin-bottom: 20px; }
.recent-list a { display: flex; gap: 15px; text-decoration: none; align-items: center; }
.recent-list img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; }
.recent-list h6 { color: #fff; font-size: 0.95rem; margin: 0 0 5px; line-height: 1.3; transition: 0.3s; }
.recent-list a:hover h6 { color: var(--farm-red); }
.recent-list .date { font-size: 0.75rem; color: #777; text-transform: uppercase; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .featured-blog-card { flex-direction: column; }
    .fbc-image { min-height: 250px; }
    .single-layout-row { flex-direction: column; }
    .single-hero-content h1 { font-size: 2.2rem; }
    .single-article-box { padding: 25px; }
}

@media (max-width: 600px) {
    .blog-grid-container { grid-template-columns: 1fr; }
    .fbc-content { padding: 30px; }
    .blog-header-content h1 { font-size: 2.5rem; }
}



  /* Grid System for Responsiveness */
    .responsive-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
        gap: 20px;
    }

    /* Card Styling & Hover Effect */
    .lift-on-hover {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        overflow: hidden;
    }
    /* Mouse le jane par upar uthega */
    .lift-on-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        border-color: #D71920; /* Red Border on Hover */
    }

 /* Flex Container for Desktop/Mobile */
    .cost-flex-container {
        display: flex;
        flex-wrap: wrap; /* Mobile par wrap karega */
        gap: 50px;
        align-items: center;
    }
    
    /* Left and Right Columns */
    .cost-text-col, .cost-card-col {
        flex: 1;
        min-width: 300px; /* Agar screen choti hui to niche gir jayega */
    }

    /* List Item Styling */
    .price-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    .price-icon {
        background: #D71920;
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        font-size: 18px;
    }

    /* Button Style */
    .btn-quote {
        background-color: #D71920; 
        color: white; 
        padding: 12px 30px; 
        text-decoration: none; 
        font-weight: 700; 
        border-radius: 4px; 
        display: inline-block;
        transition: 0.3s;
    }
    .btn-quote:hover {
        background-color: #b00e15;
    }

    /* Mobile Adjustments */
    @media (max-width: 600px) {
        .cost-card-col { padding: 25px !important; }
    }