:root {
    --brand-dark: #0f172a;
    /* title */
    --muted: #000;
    /* kicker */
    --body: #475569;
    /* paragraph */
    --accent: #b7d438;
    /* button / highlight */
    --counter-bg: #b7d438;
    /* counter cards like screenshot */
    --counter-fg: #111827;
    --card-radius: 1.25rem;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/*Preloader Start*/
/* Lock scroll during preload */
html.skt-preloading,
html.skt-preloading body {
    overflow: hidden;
}


/* Overlay */
.sakata-preloader {
    position: fixed;
    inset: 0;
    background: #000;
    /* dark background for fullscreen */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.sakata-preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Fullscreen Video */
.sakata-preloader-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills entire screen, crops if needed */
    object-position: center;
}

/* Skip button */
.sakata-preloader-skip {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    z-index: 100000;
    /* ensure above video */
    transition: background 0.3s ease;
}

.sakata-preloader-skip:hover {
    background: rgba(0, 0, 0, 0.85);
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* Section background without clipping */
.vf-section {
    /* use HTTP path, not file:/// */
    background-image: url("/uploads/bg/bg1.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    padding: 3rem 0 4rem;
    margin-top: 30px;
}

/* remove any wash/overlay if you used it earlier */
.vf-section::before {
    content: none !important;
}

.vf-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 30px;
}

.vf-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #000000;
}

.ratio-4x5 {
    --bs-aspect-ratio: calc(5 / 4 * 100%);
}

.vf-card .vf-label {
    background: #facc15;
    color: #111827;
    padding: 0.9rem 1rem;
    font-weight: 600;
    font-size: 18px;
}

.object-fit-cover {
    object-fit: cover;
}

.content_abt {
    padding: 0px 30px;
}

/* ===== Section with background ===== */
.about-hero {
    background-image: url("/uploads/bg/bg2.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    /* waves at bottom */
    background-size: contain;
    /* no clipping */
    padding: clamp(2.5rem, 5vw, 4rem) 0 7rem;
    position: relative;
    overflow: hidden;
}

/* ===== Content ===== */
.kicker {
    color: #000;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.about-title {
    color: var(--brand-dark);
    line-height: 1.2;
    font-size: 30px;
    margin-bottom: 1rem;
}
.our-process-title{
    font-weight: 600;
    margin-top:15px;
    color: #3f9d40;
}
.about-text {
    margin-top: 20px;
    font-size: 16px;
    text-align: justify;
    line-height: 25px;
}

.about-text p {
    color: var(--body);
    margin-bottom: 0.75rem;
}

/* Make the button square */
.btn-accent {
    --bs-btn-bg: var(--accent);
    --bs-btn-color: #0f172a;
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-bg: #84cc16;
    --bs-btn-hover-border-color: #84cc16;
    font-weight: 600;
    border-radius: 0;
    /* square button */
    padding: 0.7rem 1.2rem;
}

/* ===== Counters ===== */
.stats-row {
    margin-top: 1.5rem;
}

.stat-card {
    background: var(--counter-bg);
    color: var(--counter-fg);
    border-radius: 0;
    /* Removed border-radius */
    box-shadow: var(--shadow);
    padding: 1rem;
    /* Reduced padding for smaller size */
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 110px;
    max-width: 220px;
    /* Adjust width to be smaller */
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.25rem;
    line-height: 1;
}

.hero-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

button#heroPrev {
    left: 5%;
}

button#heroNext {
    right: 5%;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 992px) {
    .hero-banner {
        height: auto;
    }

    .navbar {
        padding: 1rem 0rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: auto;
    }

    #footer-main {
        padding: 0px !important;
    }
}

.testimonial-slider {
    position: relative;

    /* BG setup */
    background-image: url("/uploads/bg/bg3.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;

    --wave-ratio: 0.19;
    padding-bottom: calc(100% * var(--wave-ratio));
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 0;
    overflow: visible;
    min-height: 100vh;
}

.carousel-item {
    text-align: center;
}

.testimonial-content {
    background: transparent;
    /* White background for content */
    border-radius: 10px;
    max-width: 50%;
    /* Reduced the max-width of the content further */
    margin: 0 auto;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 25px;
    color: black;
    /* Set text color to black */
}

.farmer-details {
    text-align: center;
    font-size: 12px;
}

h3.farmer-name {
    font-size: 16px;
}

.farmer-name h3 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: black;
    /* Set name color to black */
}

.farmer-name p {
    margin: 0;
    font-size: 14px;
    color: black;
    /* Set designation color to black */
}

/* Custom arrows for carousel navigation with red background */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
    padding: 10px;
    /* Adjust padding for better visibility */
    width: 30px;
    /* Adjust size of the icon */
    height: 30px;
    /* Adjust size of the icon */
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: red;
    /* Red background for the arrows */
    border: none;
    border-radius: 50%;
    z-index: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: darkred;
    /* Darker red background on hover */
}

/* Move arrows closer to the content */
.carousel-control-prev {
    left: 5%;
    /* Reduce the left margin to bring the left arrow closer */
}

.carousel-control-next {
    right: 5%;
    /* Reduce the right margin to bring the right arrow closer */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .testimonial-content {
        max-width: 80%;
        /* Adjust content width on smaller screens */
    }

    .navbar {
        padding: 15px 0px !important;
        background: var(--light);
    }

    img.logo {
        max-width: 125px !important;
    }

    .page_section {
        margin-top: 25px !important;
    }

    .content_abt {
        padding: 0px;
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        /* Smaller arrow buttons on smaller screens */
        height: 35px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        /* Smaller arrow icons */
        height: 20px;
    }

    .ef-gallery .woocommerce-product-gallery__image img {
        margin-top: 0px !important;
    }
}

h3.main-title {
    font-size: 30px;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
}

.blog.bg-section {
    background-image: url("/uploads/bg/bg4.png");
    padding: 150px 0;
    background-size: 100% auto;
    /* scale width like 1366 base */
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: -100px;
    min-height: calc(100vw * (768 / 1366));
    /* lock ratio 16:9 */
}

.sakata.card {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 0;
    /* remove rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: auto;
    /* Make the card responsive */
    width: 100%;
}

.sakata .card img {
    width: 100%;
    height: auto;
    /* Adjust height to maintain aspect ratio */
    max-height: 250px;
    /* Set a max height for the images */
    object-fit: cover;
    border-radius: 0;
    /* remove rounded corners */
}

.sakata .card-body {
    flex-grow: 1;
    padding: 15px 20px;
    background: #f56c6c;
}

/* Custom class for meta info */
.card-meta {
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.sakata .card-title {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}

.view-more-btn {
    background-color: #b695c4;
    color: white;
    padding: 8px 20px;
    border-radius: 0;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    border: none;
    font-size: 14px;
}

.view-more-btn:hover {
    background-color: #d45c5c;
}

/* Custom responsive grid for large and small screens */
@media (max-width: 1200px) {
    .sakata.card {
        width: 90%;
        /* Cards take up 90% of the row on medium screens */
    }
}

@media (max-width: 992px) {
    .sakata.card {
        width: 100%;
        /* Cards take up 100% on small screens */
    }

    .row-cols-md-3 .col {
        margin-bottom: 20px;
        /* Space out the cards for small screens */
    }
}

@media (max-width: 576px) {
    .sakata .card-body {
        padding: 10px 15px;
        /* Reduce padding for small devices */
    }

    .view-more-btn {
        padding: 8px 15px;
        /* Smaller padding for mobile */
    }
}











footer {
    background-color: #007E3C;
    color: white;
    padding: 20px 20px;
    font-size: 14px;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 220px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    text-align: center;
    margin: 0;
}

.footer-contact,
.footer-links,
.footer-socials {
    flex: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Change from center to left align */
    text-align: left;
    /* Ensure the text is aligned left */
}

.footer-contact p,
.footer-links a,
.footer-socials a {
    margin: 5px 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    justify-content: flex-start;
    /* Align the icons to the start */
    margin: 0;
}

.footer-socials a {
    color: white;
    margin: 5px 10px;
    /* Added margin for spacing between icons */
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.footer-socials i {
    margin-right: 8px;
}

.footer-socials a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
}

@media (max-width: 480px) {

    .footer-contact,
    .footer-links,
    .footer-socials {
        margin-bottom: 15px;
        text-align: left;
        /* Left-align text */
    }

    .footer-socials {
        display: flex;
        /* Display icons in a row */
        justify-content: flex-start;
        /* Align icons to the left */
        margin: 0;
        flex-wrap: wrap;
        /* Ensure wrapping is allowed if needed */
    }

    .footer-socials a {
        font-size: 18px;
        margin: 0 10px;
        /* Space between the icons */
        display: inline-flex;
        /* Align icons in a row */
        align-items: center;
    }

    .footer-socials i {
        margin-right: 8px;
        /* Space between icon and text */
    }
}

@media (max-width: 768px) {

    .footer-contact,
    .footer-links,
    .footer-socials {
        text-align: left;
        /* Ensure left alignment on medium-sized screens */
    }

    .footer-socials a {
        font-size: 20px;
        margin: 0 12px;
    }
}

.footer-socials {
    display: flex;
    justify-content: flex-start;
    margin: 0;
}

.footer-contact,
.footer-links,
.footer-socials {
    text-align: left;
    /* Left-align text */
}

/* my css */

.footer-col-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.footer-col {
    padding-top: 30px;
}

@media screen and (max-width: 768px) {
    .footer-col {
        padding-top: 0px;
    }

    /* About Us Page */
    .about-hero {
        padding: 0x 0;
        background-size: cover;
        background-position: center bottom;
        text-align: center;
        color: white;
    }
}

/* About Us Page */
.about-hero {
    padding: 175px 0;
    background-size: cover;
    background-position: center bottom;
    text-align: center;
    color: white;
}

.about-content,
.mission-section,
.vision-section {
    padding: 80px 0;
}

.about-content h2,
.mission-section h2,
.vision-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/*Shop Page CSS*/

body.woocommerce-shop {
    background: url("http://localhost/sakata/product_bg1.png") no-repeat center top;
    background-size: cover;
}

.shop-heading {
    text-align: center;
    font-size: 28px;
    margin: 0;
    font-weight: 600;
}

.subtitle {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px auto;
    font-size: 14px;
    line-height: 1.6;
    text-transform: uppercase;
}

.products .product {
    text-align: center;
}

.products .product p {
    margin-top: 10px;
}

a {
    text-decoration: none;
    color: #000;
}

.sidebar {
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

.sidebar input[type="search"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 4px;
}

.sidebar ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.filter-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: green;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

/* Shop Page Heading Section */
.woocommerce-shop .shop-main-heading,
.woocommerce-shop .shop-heading,
.woocommerce-shop .subtitle {
    display: block;
    text-align: center;
}

/* Add space from header */
.woocommerce-shop .shop-main-heading {
    margin-top: 100px;
    /* Increase space below site header */
}

.woocommerce-shop .shop-heading {
    font-size: 32px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    /* top, right, bottom, left */
}

.woocommerce-shop .subtitle {
    max-width: 800px;
    margin: 0 auto 50px auto;
    /* centered with space below */
    font-size: 14px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #444;
}

.shop-cat-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.shop-cat-list li a {
    text-decoration: none;
    color: #222;
}

.shop-cat-list li a:hover {
    text-decoration: underline;
}

.shop-cat-list li.active>a {
    font-weight: 700;
}

.shop-cat-list .count {
    color: #777;
    margin-left: 6px;
    font-size: 12px;
}

.single-product-custom .product-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1d1d1d;
}

.single-product-custom .product-price {
    font-size: 1.5rem;
    color: #e63946;
    font-weight: 700;
}

.single-product-custom .btn {
    border-radius: 8px;
    padding: 10px 20px;
    margin-right: 10px;
}

.product-gallery img {}

/*Product Image CSS*/
/* ===== Background image for the whole page area ===== */
.category-bg {
    background-image: url("<?php echo esc_url($bg_url); ?>");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-overlay {
    background: rgba(255, 255, 255, 0.9);
}

/* Section above the footer with background image */
.section-pad {
    padding: 32px 0;
    margin-top: 100px;
}

.object-fit-cover {
    object-fit: cover;
}

.thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #dee2e6;
    background: #fafafa;
    color: #6c757d;
}

.page_section {
    margin-top: 50px;
}

/* ===== Sidebar card styling (default layout — top level only) ===== */
.sidebar-box {
    border: 1px solid #00963f;
    border-radius: 5px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
    height: max-content;
}

.sidebar-box .widgettitle {
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.sidebar-box input[type="search"],
.sidebar-box input[type="text"] {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.sidebar-box input[type="submit"],
.sidebar-box button {
    background: #00963f;
    color: #fff;
    border: none;
    padding: 5px 20px;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.sidebar-box input[type="submit"]:hover,
.sidebar-box button:hover {
    background: #0b1220;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box ul li {
    padding: 5px 0px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-box ul li a {
    text-decoration: none;
    color: #111827;
}

.sidebar-box ul li a:hover {
    color: #e53935;
}

@media (min-width: 992px) {
    .sidebar-align {
        margin-top: 2rem;
    }
}

/* Child-cat thumbnail grid (fallback case) */
.fixed-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.row.close-gap {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 20px;
}

/* ======== CUSTOM HERO for ALL child categories (dynamic) ======== */
.custom-hero {
    position: relative;
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
    background: #fff;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 350px;
    float: right;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.12em;
    color: #111827;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.custom-hero h2 {
    font-weight: 600;
    margin: 0 0 6px;
    text-align: center;
}

.custom-hero .lead-desc {
    max-width: 630px;
    color: #4b5563;
    line-height: 1.6;
    float: inline-end;
    text-align: justify;
}

/* Product Card */
.product-card {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    /* Ensures text is centered vertically */
}

.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    /* Adjust height of the image */
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 10px;
    text-align: center;
    flex-grow: 1;
}

.product-title {
    font-size: 16px;
    /* Default font size for desktop */
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.product-title:hover {
    color: #e53935;
}

.product-price {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin-top: 10px;
    transition: color 0.2s ease;
}

.product-price:hover {
    color: #e53935;
}

/* Hover Effect */
.product-card:hover .product-info {
    background-color: #f9fafb;
}

/* Responsive for Mobile */
@media (max-width: 767.98px) {
    .product-title {
        font-size: 12px;
        /* Title font size for mobile */
    }

    .vf-title {
        font-size: 22px;
    }

    .product-image {
        height: 150px;
        border-bottom: 1px solid #e5e7eb;
        padding: 15px;
    }

    .product-info {
        padding: 10px 5px 0px 5px;
    }

    .custom-cat-products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2 items per row on mobile */
    }

    .category-description {
        font-size: 14px !important;
        padding: 0px !important;
    }

    .fixed-img {
        width: 150px;
    }

    h4.sp_title {
        font-size: 14px;
    }

    .hero-img-wrap img {
        max-width: 250px;
        height: auto;
        display: block;
        margin-right: auto;
        float: none;
        margin-left: auto;
        padding: 20px 0px 0px 0px;
    }

    h1.sub-title {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        font-weight: 600 !important;
    }

    .custom-hero .lead-desc {
        margin-top: -40px;
        font-size: 14px;
    }

    .custom-cat-products {
        margin-top: -10px !important;
    }

    .section-pad {
        padding: 32px 0;
        margin-top: 80px;
    }

    .custom-hero h2 {
        font-size: 14px;
    }

}

/* 2-column grid */
.custom-cat-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px !important;
    padding-left: 0;
    list-style: none;
}

/* Kill theme's floats/widths so grid works properly */
.custom-cat-products ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.custom-cat-products ul.products::before,
.custom-cat-products ul.products::after {
    display: none !important;
}

/* 2-column grid */
.custom-cat-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px !important;
    padding-left: 0;
    list-style: none;
}

/* Kill theme's floats/widths so grid  */
.custom-cat-products ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.custom-cat-products ul.products::before,
.custom-cat-products ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    display: block;
    display: block;
    margin-right: auto;
    margin-left: auto;
    box-shadow: none;
    max-width: 200px;
    border-bottom: 1px solid #e5e7eb;
}

section.tractor_bg {
    margin-bottom: 40px;
}

/* (optional)  1 column */
@media (max-width: 575.98px) {
    .custom-cat-products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2 items per row on mobile */
    }

    .custom-cat-products .woocommerce-loop-product__title {
        font-size: 14px !important;
        font-weight: 700;
        text-align: center;
        margin: 4px 0 2px;
    }
}

@media (max-width: 991.98px) {
    .custom-hero {
        padding: 12px;
    }

    img.contact-front {
        max-width: 300px !important;
        width: 100%;
        display: block;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .hero-img-wrap {
        aspect-ratio: 1 / 1;
    }
}

.custom-header {
    display: none;
}

h3.widgettitle_search {
    font-size: 18px;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list li:hover {
    background: #faf9f6;
    transform: translateX(6px);
}

.category-list li:hover a {
    color: #d4af37;
    /* Luxury gold highlight */
}

/* ====== WOW Gallery (Vertical thumbs + Premium card) ====== */
.ef-gallery .woocommerce-product-gallery {
    /*padding: 14px;           */
}

/* Create two-column layout on large screens */
@media (min-width: 992px) {
    .ef-gallery .woocommerce-product-gallery {
        display: grid;
        grid-template-columns: 110px 1fr;
        /* thumbs | main image */
        grid-template-rows: auto;
        column-gap: 12px;
        align-items: start;
    }
}

/* Main image wrapper */
.ef-gallery .woocommerce-product-gallery__wrapper {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

/* Gentle zoom + glassy glint */
.ef-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
    /*object-fit:none;*/
    margin-top: 50px;
}

.ef-gallery .woocommerce-product-gallery__wrapper:hover img {
    transform: scale(1.02);
}

.ef-gallery .woocommerce-product-gallery__wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.22) 55%,
            rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Zoom/Fullscreen trigger (Woo’s built-in) */
.ef-gallery .woocommerce-product-gallery__trigger {
    right: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e7e2c9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: none;
}

.ef-gallery .woocommerce-product-gallery__trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(212, 175, 55, 0.22);
}

/* Thumbnails — base */
.ef-gallery .flex-control-thumbs {
    margin: 0;
}

/* Desktop: vertical rail on the left */
@media (min-width: 992px) {
    .ef-gallery .flex-control-thumbs {
        display: grid !important;
        grid-auto-rows: min-content;
        grid-row-gap: 8px;
        overflow: auto;
        max-height: 560px;
        /* adjust to your image height */
        padding-right: 2px;
    }

    /* Place the thumbs grid in column 1 */
    .ef-gallery .flex-control-thumbs {
        grid-column: 1;
    }

    .ef-gallery .woocommerce-product-gallery__wrapper {
        grid-column: 2;
    }
}

.ef-gallery .flex-control-thumbs li {
    list-style: none;
    margin: 0 !important;
}

.ef-gallery .flex-control-thumbs img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #f7f6f2;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
    cursor: pointer;
    display: block;
}

/* Active / hovered thumb */
.ef-gallery .flex-control-thumbs img:hover {
    transform: translateY(-1px);
    border-color: #e7e2c9;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.ef-gallery .flex-control-thumbs .flex-active,
.ef-gallery .flex-control-thumbs img.is-active {
    outline: none;
    border: 2px solid #d4af37 !important;
    /* luxury gold ring */
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.25);
}

/* SALE badge restyle */
.ef-gallery .onsale {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f6e27a, #d4af37);
    color: #1f1f1f;
    font-weight: 700;
    border-radius: 999px;
    padding: 6px 10px;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Aspect ratio helper (if your images vary) */

/* Skeleton shimmer while loading */
.ef-gallery .woocommerce-product-gallery__image img[loading="lazy"],
.ef-gallery .woocommerce-product-gallery__image img.lazyload {
    filter: blur(4px);
    opacity: 0.9;
}

.ef-gallery .woocommerce-product-gallery__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0),
            rgba(255, 255, 255, 0.35),
            rgba(0, 0, 0, 0));
    transform: translateX(-100%);
    animation: ef-shimmer 1.3s infinite;
    pointer-events: none;
}

@keyframes ef-shimmer {
    to {
        transform: translateX(100%);
    }
}

/* Swiper/Photoswipe arrows (if present) */
.ef-gallery .swiper-button-prev,
.ef-gallery .swiper-button-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e7e2c9;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.ef-gallery .swiper-button-prev:after,
.ef-gallery .swiper-button-next:after {
    font-size: 16px;
    color: #222;
}

h2.woocommerce-loop-product__title {
    font-size: 18px !important;
    font-weight: 600;
}

.elementor-post__text {
    padding: 0px 10px 0px 15px;
}

/* 404 Page Styling */
.not-found-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    text-align: center;
    background: #f9f9f9;
}

.error-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.error-title {
    font-size: 120px;
    font-weight: 800;
    color: #e63946;
    /* red accent */
    margin: 0;
    line-height: 1;
}

.error-subtitle {
    font-size: 32px;
    margin: 15px 0;
    font-weight: 600;
    color: #222;
}

.error-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background: #0073e6;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-home:hover {
    background: #005bb5;
    transform: translateY(-2px);
}

.category-description {
    padding: 30px 50px 30px 50px;
    font-size: 16px;
}

/*@media (min-width: 1200px) {*/
/*    .h1, h1 {*/
/*        font-size: 38px;*/
/*        margin-top: 100px;*/
/*        text-align: center;*/
/*    }*/
/*}*/

/* Hide default theme post title */
.single-post h1.entry-title {
    display: none !important;
}

/* === Blog Cards === */
.sakata-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Image */
.sakata-card .sakata-thumb img {
    width: 100%;
    height: 240px;
    /* need: same height feel */
    object-fit: cover;
    display: block;
}

/* Purple content area */
.sakata-card .sakata-content {
    background: #b695c5;
    /* lavender/purple like screenshot */
    color: #fff;
    padding: 16px 18px;
}

/* Title two lines max with ellipsis */
.sakata-card .sakata-title {
    margin: 0 0 8px 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sakata-card .sakata-title a {
    color: #fff;
    text-decoration: none;
}

/* Meta (author - date) */
.sakata-card .sakata-meta {
    margin: 0px 0px 5px 0px;
    opacity: 0.85;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

/* Hover */
.sakata-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Spacing between cards */
.blog .row.g-4>[class*="col-"] {
    margin-bottom: 12px;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .sakata-card .sakata-thumb img {
        height: 210px;
    }

    .sakata-card .sakata-title {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .sakata-card .sakata-thumb img {
        height: 190px;
    }

    .sakata-card .sakata-title {
        font-size: 17px;
    }
}

/* Hide only Demo category */
.cat-item-18 {
    display: none !important;
}

/* Custom Form Container */
.custom-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.custom-contact-form h2 {
    font-size: 2em;
    margin-bottom: 0.3em;
    font-weight: bold;
}

.custom-contact-form .subtitle {
    font-size: 1em;
    color: #444;
    margin-bottom: 2em;
}

/* Form field styles */
.custom-contact-form .custom-field {
    display: block;
    margin-bottom: 1em;
    width: 100%;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea,
.custom-contact-form select,
.custom-contact-form input[type="file"] {
    width: 100%;
    border: none;
    border-bottom: 2px solid #b68acb;
    /* Purple underline */
    background: transparent;
    padding: 0.5em 0;
    font-size: 1em;
    outline: none;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder,
.custom-contact-form select {
    color: #b68acb;
}

/* Two-column layout */
.custom-contact-form .form-row {
    display: flex;
    gap: 20%;
    /*flex-wrap: wrap;*/
}

.custom-contact-form .half-width {
    width: 48%;
}

/* Submit Button */
.custom-contact-form .form-submit {
    margin-top: 1em;
}

.custom-contact-form input[type="submit"] {
    background-color: #b68acb;
    color: #fff;
    border: none;
    padding: 0.5em 2em;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-contact-form input[type="submit"]:hover {
    background-color: #a273b9;
}

/* File upload placeholder workaround */
.wpcf7 input[type="file"]::file-selector-button {
    background: #b68acb;
    color: #fff;
    border: none;
    padding: 0.4em 1em;
    margin-right: 1em;
    cursor: pointer;
}

.wpcf7-form-control-wrap br {
    display: none;
}

.custom-contact-form br {
    display: none;
}

label.custom-acceptance {
    margin-left: -10px;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0.7em;
    font-family: "Poppins";
}

.wpcf7 form .wpcf7-response-output {
    margin: 0em 0em 0em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    font-size: 14px;
}

span.wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

main.page-content {
    max-width: 100%;
}

/* ===== Minimal Hero ===== */
.ef-hero-minimal {
    background: #faf7ef;
    /* soft cream */
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.ef-hero-inner {
    padding: 64px 16px;
}

.ef-hero-title {
    font-size: clamp(36px, 5vw, 45px);
    font-weight: 600;
    color: #0e1209;
    /* deep greenish black */
    margin: 0 0 10px;
    letter-spacing: 0.2px;
    margin-top: 50px;
}

.ef-hero-down {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: #0e1209;
    opacity: 0.8;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ef-hero-down:hover {
    transform: translateY(3px);
    opacity: 1;
}

/* ===== EF Woo Tabs: modern pill design (with black active tab) ===== */

.ef-tabs .woocommerce-tabs ul.tabs {
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    /* slate-200 */
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

/* remove default triangles some themes add */
.ef-tabs .woocommerce-tabs ul.tabs:before,
.ef-tabs .woocommerce-tabs ul.tabs:after,
.ef-tabs .woocommerce-tabs ul.tabs li:before {
    display: none !important;
    content: none !important;
}

.ef-tabs .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.ef-tabs .woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: 0.65rem 1rem;
    border-radius: 0px;
    font-weight: 600;
    color: #475569;
    /* slate-600 */
    text-decoration: none;
    transition: all 0.18s ease;
    outline: none;
}

/* active + hover — now with black background and white text */
.ef-tabs .woocommerce-tabs ul.tabs li.active a,
.ef-tabs .woocommerce-tabs ul.tabs li a:hover {
    color: #ffffff;
    /* white text */
    background: #000000;
    /* black background */
    box-shadow: inset 0 0 0 2px #000, 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* panel card */
.ef-tabs .woocommerce-tabs .panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
    animation: ef-fade 0.22s ease;
}

@keyframes ef-fade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* tidy headings and lists inside panels */
.ef-tabs .woocommerce-tabs .panel h2:first-child {
    margin-top: 0;
}

.ef-tabs .woocommerce-tabs .panel ul {
    padding-left: 1.1rem;
}

/* mobile: full width tabs */
@media (max-width: 640px) {
    .ef-tabs .woocommerce-tabs ul.tabs {
        gap: 0.4rem;
    }

    .ef-tabs .woocommerce-tabs ul.tabs li a {
        padding: 0.55rem 0.8rem;
        border-radius: 0px;
        font-size: 14px;
    }
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.product-table thead tr {
    background-color: #2e8b57;
    color: #fff;
}

.product-table th,
.product-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.product-table tbody tr:nth-child(odd) td:first-child {
    background-color: #f8f8f8;
    font-weight: 600;
}

.product-table tbody tr:hover td {
    background-color: #f2faf5;
}

/* ✅ List alignment inside table cells */
.product-table td ul,
.product-table td ol {
    margin: 8px 0 8px 18px;
    padding: 0;
}

.product-table td li {
    margin-bottom: 4px;
    line-height: 1.5;
}

/* ✅ Handle manual bullet points (•) in text */
.product-table td {
    line-height: 1.6;
}

.product-table td br+br {
    display: none;
    /* remove extra line breaks if any */
}

/* Responsive Card View (No HTML change needed) */
@media (max-width: 640px) {
    .product-table {
        border: 0;
        box-shadow: none;
    }

    .product-table thead {
        display: none;
    }

    .product-table,
    .product-table tbody,
    .product-table tr,
    .product-table td {
        display: block;
        width: 100%;
    }

    .product-table tr {
        margin-bottom: 14px;
        border: 1px solid #dcdcdc;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .product-table td {
        border: none;
        border-bottom: 1px solid #eee;
        padding: 12px 16px;
        position: relative;
        font-size: 14px;
        line-height: 1.6;
    }

    .product-table td:first-child {
        font-weight: 600;
        background-color: #f8f8f8;
    }

    .product-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #444;
        margin-bottom: 4px;
    }

    .product-table td:last-child {
        border-bottom: 0;
    }

    /* ✅ Better alignment for bullets on mobile */
    .product-table td ul,
    .product-table td ol {
        margin-left: 20px;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .product-table td li {
        font-size: 14px;
        line-height: 1.5;
    }
}

/*Product Details Page Styling*/
tbody {
    font-family: "Poppins", sans-serif;
}

#tab-wpt-1150,
#tab-wpt-1150 * {
    box-sizing: border-box;
}

#tab-wpt-1150 {
    padding: 0px;
    color: #1a1a1a;
    line-height: 1.6;
    overflow: visible !important;
}

/* ---------------- Top-level table ---------------- */
#tab-wpt-1150>table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
    background: #fff;
    table-layout: auto;
    /* allow natural widths */
    font-size: 14px;
}

#tab-wpt-1150>table thead {
    background: #00963f !important;
    color: #fff;
}

#tab-wpt-1150>table th,
#tab-wpt-1150>table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
    white-space: normal;
    word-break: normal;
    /* don't split letters */
    overflow-wrap: break-word;
    /* wrap long words safely */
}

#tab-wpt-1150>table td:first-child {
    font-weight: 600;
    background: #f8fafc;
    width: 28%;
    min-width: 180px;
    /* prevent too-narrow label column */
}

/* section headers inside body */
#tab-wpt-1150>table td[align="center"] {
    text-align: left !important;
    background: #eef2ff;
    border-left: 2px solid #00963f;
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* ---------------- Nested tables (fertilizers/diseases/pests) ---------------- */
#tab-wpt-1150 table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    table-layout: auto;
}

#tab-wpt-1150 table table thead {
    background: #f3f4f6;
    font-weight: 600;
}

#tab-wpt-1150 table table th,
#tab-wpt-1150 table table td {
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    font-size: 13px;
    vertical-align: top;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

/* CRITICAL FIX: left column must not wrap vertically */
#tab-wpt-1150 table table th:first-child,
#tab-wpt-1150 table table td:first-child {
    white-space: nowrap;
    /* keep terms on one line */
    overflow-wrap: normal;
    word-break: normal;
    min-width: 180px;
    /* give breathing room */
}

/* lists spacing */
#tab-wpt-1150 td ul,
#tab-wpt-1150 td ol {
    margin: 6px 0 6px 18px;
}

#tab-wpt-1150 td li {
    margin: 4px 0;
}

.vegetable-text {
    line-height: 25px;
}

/*footer upper image css*/

.full-width-image {
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: hidden;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {

    /* scroll instead of squeezing: never cut content */
    #tab-wpt-1150>table,
    #tab-wpt-1150 table table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Mobile tweaks */
@media (max-width: 640px) {
    #tab-wpt-1150>table {
        display: block;
        overflow-x: auto;
        /* top table scrolls if needed */
    }

    /* nested tables need a safe minimum width so columns don't crush */
    #tab-wpt-1150 table table {
        min-width: 700px;
    }
}

/* Never clip rows */
#tab-wpt-1150 table tr {
    transform: none !important;
    box-shadow: none !important;
}

/* responsive css for small devices start*/

@media screen and (max-width: 768px) {
    .vf-section {
        padding: 1rem 0 4rem;
    }

    .about-hero {
        padding: 0px;
    }

    h3.main-title {
        font-size: 24px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-text {
        font-size: 14px;
    }

    .vegetable-text {
        text-align: justify;
    }

    .content_abt_head {
        font-size: 18px;
    }

    section.blog.bg-section {
        padding-bottom: 20px;
    }

    .stat-card {
        padding: 25px;
    }
    #passion-in-seed{
        margin-top:0;
    }
}

/* responsive css for small devices end*/

.category-description {
    margin: auto;
    font-size: 16px;
}

.category-image-wrapper {
    max-width: 260px;
}

.category-card:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}

@media (max-width: 575px) {
    .category-image-wrapper {
        max-width: 150px;
    }
}

.sidebar-box {
    border: 1px solid #00963f;
    border-radius: 5px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
    height: max-content;
}

button#s_btn {
    background: #00963f !important;
    color: #fff;
    border: none;
    padding: 5px 20px !important;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

/* Green header table */
.sakata-spec-table thead th {
    background: #0a9a44;
    color: #fff;
    font-weight: 600;
}

/* Tabs look */
.nav-pills .nav-link {
    font-size: 14px;
}

.nav-pills .nav-link.active {
    background: #000;
}

/* Tables inside tab content */
.tab-pane table {
    width: 100%;
    border-collapse: collapse;
}

.tab-pane table th {
    background: #0a9a44;
    color: #fff;
    padding: 10px;
}

.tab-pane table td {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
}

/* Backend editor content wrapper */
.editor-content {
    font-size: 14px;
    color: #374151;
}

/* TABLE STYLE (matches screenshot) */
.editor-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.editor-content thead th {
    background: #0a9a44;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    text-align: left;
}

.editor-content tbody td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.editor-content tbody tr:nth-child(even) {
    background: #f9fafb;
}

/* LISTS */
.editor-content ul {
    padding-left: 18px;
}

.editor-content ul li {
    list-style: disc;
    margin-bottom: 6px;
}

/* HEADINGS */
.editor-content h2,
.editor-content h3 {
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

/* PARAGRAPHS */
.editor-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.custom-pagination {
    font-size: 14px;
}

.page-btn {
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
}

.page-btn:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.page-btn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.page-info {
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}

.icon {
    font-size: 14px;
}

h1.sub-title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: 500;
}

h1.sub-title:hover {
    color: #e53935;
    cursor: pointer;
}

.product-short-desc {
    background: #ffffff;
    cursor: pointer;
    max-width: 600px;
    /* ← width patla */
}

/* Product detail main image */
.product-image-wrapper {
    width: 100%;
    max-width: 420px;
    /* desktop size */
    aspect-ratio: 1 / 1;
    /* perfect square */
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* IMPORTANT for 5000x5000 images */
}

/* ================================
   RELATED PRODUCTS – CLEAN & FIXED
================================ */

/* Wrapper */
.related-products {
    position: relative;
}

/* Title */
.related-title {
    font-weight: 600;
}

/* ================================
   SWIPER FIX (NO EMPTY SPACE)
================================ */
.related-products .swiper {
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 20px;
}

.related-products .swiper-wrapper {
    align-items: stretch;
}

.related-products .swiper-slide {
    height: auto !important;
    display: flex;
}

/* ================================
   RELATED PRODUCTS – FINAL CLEAN
================================ */

/* Wrapper */
.related-products {
    position: relative;
    overflow: visible;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Title */
.related-title {
    font-weight: 600;
}

/* ================================
   SWIPER (NO EMPTY SPACE)
================================ */
.related-products .swiper {
    height: auto !important;
    overflow: hidden;
}

.related-products .swiper-wrapper {
    align-items: stretch;
}

.related-products .swiper-slide {
    height: auto !important;
    display: flex;
    align-self: flex-start;
}

/* ================================
   CARD
================================ */
.related-card {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding-bottom: 12px;
    text-decoration: none;
    color: #1f2937;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Image */
.related-img-wrap {
    height: 220px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eef2f7;
}

.related-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Name */
.related-name {
    padding: 12px 14px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* ================================
   ARROWS (CLEAN & CENTERED)
================================ */
.related-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0a6c3a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

/* Left / Right */
.related-prev {
    left: 5px;
}

.related-next {
    right: 0px;
}

/* Icon */
.related-arrow::after {
    font-family: swiper-icons;
    font-size: 16px;
    color: #fff;
}

.related-prev::after {
    content: "prev";
}

.related-next::after {
    content: "next";
}

/* Hover */
.related-arrow:hover {
    background: #085c31;
    transform: translateY(-50%) scale(1.08);
}

/* Mobile: hide arrows */
@media (max-width: 576px) {
    .related-arrow {
        display: none;
    }
}

/* Prevent related section from causing overflow */
.related-products {
    overflow: hidden;
}

.news-hero {
    background: #f7f2ea;
    padding: 24px 0 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.news-breadcrumb a {
    color: #777;
    text-decoration: none;
}

.news-breadcrumb a:hover {
    text-decoration: underline;
}

.news-breadcrumb span {
    margin: 0 6px;
}

.news-breadcrumb .current {
    color: #222;
    font-weight: 500;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.meta-pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

.meta-pill.featured {
    background: #fff7e6;
    border-color: #f0c36d;
    color: #8a5b00;
}

.meta-text {
    font-size: 13px;
    color: #666;
}

.news-detail-img {
    max-width: 920px;
    width: 100%;
    height: auto;
    display: inline-block;
    object-fit: cover;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    text-align: justify !important;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
}

.news-detail-content p {
    margin-bottom: 14px;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.news-gallery-img {
    aspect-ratio: 16/10;
    object-fit: cover;
}

@media (max-width: 576px) {
    .news-hero {
        padding: 20px 0;
    }

    .news-breadcrumb {
        font-size: 12px;
    }

    .news-detail-content {
        font-size: 15px;
        line-height: 1.75;
    }
}

/* Card wrapper */
.news-card {
    border: 0;
    display: block;
    height: 100%;
}

/* Image box same proportions like screenshot */
.news-card__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* same feel */
    background: #eee;
    overflow: hidden;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.news-card:hover .news-card__img {
    transform: scale(1.02);
}

/* Purple area includes title + meta (no footer) */
.news-card__bottom {
    background: #a78cc7;
    padding: 18px 18px 16px;
    min-height: 120px;
    /* keeps cards aligned like screenshot */
}

.news-card__title {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__meta {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Responsive typography */
@media (max-width: 576px) {
    .news-card__bottom {
        min-height: auto;
    }

    .news-card__title {
        font-size: 16px;
    }

    .news-card__meta {
        font-size: 13px;
    }
}

/* Equal height cards */
.sakata-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
}

/* Image wrapper */
.sakata-thumb {
    display: block;
    width: 100%;
    overflow: hidden;
}

/* Fixed image height */
.sakata-thumb img {
    width: 100%;
    height: 240px;
    /* 🔥 Adjust as needed */
    object-fit: cover;
    /* 🔥 Prevent stretch */
    display: block;
}

/* Content takes remaining space */
.sakata-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

/* Title fix (2 lines max) */
.sakata-title {
    margin-top: 10px;
}

.sakata-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 🔥 2 line title */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    /* keeps height same */
}

/* Meta height lock */
.sakata-meta {
    min-height: 22px;
    font-size: 13px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-bottom: 2px solid #b18ac9;
}

.sakata-section {
    background: #fff
}

.sakata-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 160px 0
}

.sakata-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

.btn-sakata {
    background: #b6d63a;
    color: #000;
    font-weight: 600;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    transition: background .3s ease;
}

.btn-sakata:hover {
    background: #a4c72f
}

.abt-title,
.section-title,
.abt-main-title {
    font-weight: 600
}

.abt-title {
    font-size: 24px
}

.abt-main-title,
.section-title {
    font-size: 26px
}

.abt-map-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 35px;
    color:#000;
    font-size:24px;
}
.philo-circle img{
    width:125px;
}
.motto-label{
    margin-top:10px;
}
.abt-text,
.mgmt-text,
.quality-text,
.quality_text,
.process-text,
.scm-text,
.innovation-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
    text-align: justify
}

.quality_text {
    font-size: 16px
}

.management-img {
    width: 100%;
    max-width: 550px
}

.person-name {
    font-size: 18px;
    font-weight: 600
}

.person-designation {
    font-size: 14px;
    font-weight: 600;
    font-style: italic
}

.thankyou {
    font-size: 16px;
    font-style: italic
}

.icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.scm-section {
    padding: 50px 0;
    background: url("https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/sakata/Bg-4.png") no-repeat center/cover
}

.scm-row {
    max-width: 1100px;
    margin: 0 auto
}

.scm-title {
    font-size: 32px;
    font-weight: 700
}

.scm-heading {
    font-size: 21px;
    font-weight: 600
}

.scm-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-top: 16px
}

.scm-points {
    font-size: 14px;
    line-height: 24px;
    padding-left: 18px
}

.scm-image-wrap,
.process-image-wrap,
.innovation-image-wrap {
    overflow: hidden;
    border-radius: 28px
}

.scm-image-wrap img,
.process-image-wrap img,
.Germination_img,
.innovation-image-wrap img {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto
}

.process-single-section {
    padding: 50px 0;
    background: #fff
}

.process-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px
}

.process-title-lg {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center
}

.process-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin: 16px 0 10px
}

.scm-row-bg {
    background: url("https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/sakata/Bg-4.png") no-repeat center/cover;
    padding: 32px;
    border-radius: 24px
}

.innovation-section {
    padding: 50px 0
}

.innovation-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center
}

.innovation-row {
    max-width: 1200px;
    margin: 0 auto
}

.innovation-image-wrap {
    max-width: 520px;
    border-radius: 70% 30% 65% 35%/55% 60% 40% 45%
}

.alt-radius {
    border-radius: 35% 65% 30% 70%/55% 40% 60% 45%
}

.alt-section {
    padding-top: 30px
}

@media(max-width:991px) {
    .sakata-image-wrapper {
        border-radius: 0 0 80px 0
    }

    .btn-sakata {
        padding: 10px 20px;
        font-size: 14px;
        max-width: 300px;
        margin: 0 auto;
        display: block
    }

    .scm-section,
    .process-single-section,
    .innovation-section {
        padding: 30px 0
    }

    .scm-row-bg {
        padding: 0
    }

    .scm-title,
    .innovation-title {
        font-size: 18px;
        margin-top: 30px
    }

    .process-subtitle {
        font-size: 18px
    }

    .process-title-lg {
        font-size: 22px;
        margin-bottom: 18px
    }

    .scm-image-wrap img,
    .process-image-wrap img,
    .Germination_img,
    .innovation-image-wrap img {
        max-width: 300px
    }

    .process-image-wrap {
        margin-bottom: 16px
    }

    .innovation-image-wrap {
        margin: 0 auto 20px;
        border-radius: 24px
    }

    .scm-heading {
        margin-top: 40px;
        font-size: 18px
    }
}

@media(max-width:576px) {

    .scm-title,
    .innovation-title {
        font-size: 21px
    }

    .process-title {
        font-size: 20px
    }
}

.csr-activity-section {
    background: #fff;
    padding: 60px 0
}

.csr-activity-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 160px 0
}

.csr-activity-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    display: block;
    margin-left: auto
}

.csr-activity-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #000
}

.csr-activity-title span {
    color: #5a8f00;
    font-weight: 800
}

.csr-activity-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 14px;
    text-align: justify
}

@media(max-width:991px) {
    .csr-activity-section {
        padding: 40px 0
    }

    .csr-activity-image-wrapper {
        border-radius: 0 0 90px 0;
        margin-bottom: 20px
    }

    .csr-activity-image {
        margin: 0 auto;
        max-width: 300px
    }

    .csr-activity-title {
        font-size: 26px;
        text-align: center;
        margin-top: -30px
    }

    .csr-activity-text {
        font-size: 14px
    }
}

@media(max-width:576px) {
    .csr-activity-title {
        font-size: 24px
    }
}

.csr-gallery-section {
    padding: 40px 0;
    background: #fff
}

.csr-gallery-item {
    overflow: hidden;
    border-radius: 14px
}

.csr-gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform .4s ease
}

.csr-gallery-item:hover img {
    transform: scale(1.05)
}

@media(max-width:576px) {
    .csr-gallery-section {
        padding: 25px 0
    }
}

.careers-section {
    background: #fff;
    padding: 40px 0
}

.careers-image-wrapper {
    overflow: hidden;
    border-radius: 0 0 160px 0
}

.careers-image {
    width: 100%;
    max-width: 450px;
    display: block;
    margin-left: auto
}

.careers-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #000
}

.careers-text,
.careers-intro {
    font-size: 14px;
    line-height: 1.7;
    color: #333
}

.careers-text {
    margin-bottom: 14px;
    text-align: justify
}

.careers-intro {
    max-width: 900px;
    margin: 0 auto
}

.values-section {
    padding: 40px 0;
    background: #fff
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px
}

.value-item {
    display: flex;
    gap: 18px
}

.icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px
}

.value-title:after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: #000;
    margin-top: 6px
}

.value-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555
}

.value-item p strong {
    color: #000
}

h3.text-center {
    font-size: 34px;
    font-weight: 600;
    margin: 20px 0 20px
}

@media(max-width:991px) {
    .careers-section {
        padding: 10px 0
    }

    .careers-image-wrapper {
        border-radius: 0 0 90px 0;
        margin-bottom: 20px
    }

    .careers-image {
        margin: 0;
        margin-top: 30px;
        max-width: 300px;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .careers-title {
        font-size: 26px;
        text-align: center
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

@media(max-width:576px) {
    .careers-title {
        font-size: 24px
    }

    h3.text-center {
        font-size: 22px
    }
}

img.contact-image {
    width: 100%;
    max-width: 450px;
}

img.contact-us {
    width: 100%;
    margin-top: 40px
}

.contact-title {
    margin-top: 50px;
    font-size: 28px;
    font-weight: 600
}

.contact-text {
    font-size: 14px
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #b695c4;
    padding: 8px 0;
    font-size: 14px;
    background: 0 0;
    outline: 0
}

.contact-form textarea {
    resize: none
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b695c4
}

.file-field input {
    display: none
}

.file-field label {
    background: #b695c4;
    color: #fff;
    padding: 8px 18px;
    cursor: pointer
}

.contact-btn {
    background: #b695c4;
    color: #fff;
    padding: 8px 36px;
    border: 0
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4
}

.checkbox input {
    width: 14px;
    height: 14px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #b695c4
}

.cta-section {
    /*background: url("https://pub-d0247e56e5b842aa9e58b7d4adb01047.r2.dev/sakata/common-images/cta.jpg") center/cover no-repeat;*/
    background:#b695c4;
    /*margin: 60px 0;*/
}

.cta-content {
    padding: 60px 20px;
    text-align: center
}

.cta-content p {
    color: #fff;
    font-size: 20px;
}

.cta-btn {
    background: #ff6b6b;
    color: #fff;
    padding: 8px 28px;
    display: inline-block;
    margin-top: 10px;
}

.cta-btn:hover {
    background: #ff5252
}

.map-wrapper {
    width: 100%;
    margin-top: 60px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

@media(max-width:768px) {

    .cta-content p {
        font-size: 16px
    }

    .contact-title {
        margin-top: 0
    }

    img.contact-image {
        max-width: 300px;
        display: block;
        margin: -30px auto 0
    }
    h2.abt-map-title{
        font-size: 20px;
    }
}

img.contact-front {
    max-width: 450px;
    width: 100%;
    margin-right: 5pc;
}

/* Contact Section */
.contact-input {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.contact-input:focus {
    box-shadow: none;
    border-bottom-color: #b18ac9;
}

.btn-contact {
    background-color: #b18ac9;
    color: #fff;
    border-radius: 0px;
}

.btn-contact:hover,
.btn-contact:focus {
    background-color: #9f72bd;
    color: #fff;
}

/* Mobile image adjustments */
@media (max-width: 767px) {
    .contact-image {
        display: block;
        margin: 0 auto;
        max-width: 300px;
        box-shadow: none !important;
    }
}

/* REMOVE ALL BOX & SHADOW */
.contact-input,
.contact-input:focus,
.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
}

/* UNDERLINE STYLE (DEFAULT) */
.contact-input,
.form-select.contact-input {
    border: none !important;
    border-bottom: 1px solid #c7c7c7 !important;
    padding-left: 0;
    padding-right: 0;
}

/* FOCUS UNDERLINE (PURPLE) */
.contact-input:focus,
.form-select.contact-input:focus {
    border-bottom: 2px solid #b18ac9 !important;
}

/* PLACEHOLDER COLOR */
.contact-input::placeholder {
    color: #8a8a8a;
    opacity: 1;
}

/* REMOVE SELECT ARROW BACKGROUND */
.form-select {
    background-color: transparent;
}

/* INVALID STATE CLEAN */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    box-shadow: none;
}

/* SELECT WRAPPER */
.select-wrapper {
    position: relative;
}

/* REMOVE DEFAULT ARROW */
.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding-right: 32px;
    /* space for arrow */
}

/* CUSTOM ARROW */
.select-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

/* FOCUS ARROW COLOR */
.select-wrapper select:focus+ ::after {
    border-color: #b18ac9;
}

img.abt_img {
    width: 100%;
    max-width: 450px;
}

@media (max-width: 768px) {
    .blog.bg-section {
        background-image: none;
        padding: 60px 0;
        /* optional: mobile ke liye padding adjust */
        margin-top: 0;
        /* optional */
        min-height: auto;
    }

    .testimonial-slider {
        background-image: none;
        padding-bottom: 0;
        /* wave space remove */
        min-height: auto;
        /* full height issue fix */
    }

    div#testimonialCarousel {
        margin-top: 100px;
    }

    .h5.fw-semi-bold {
        font-size: 16px;
    }

    h4.sub_title {
        font-size: 28px;
        font-weight: 500;

    }

    .ef-hero-title {
        font-size: 28px;
    }



    .ef-hero-inner {
        padding: 0px 16px;
    }

    img.abt_img {
        width: 100%;
        max-width: 300px;
    }

    .sakata-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        object-fit: cover;
        /* float: right; */
        display: block;
        margin-right: auto;
        margin-left: auto;
    }
    img#c_img {
    margin: 30px auto 0;
}
}

.job-opening-section {
  padding: 10px 0;
  background: #fff;
}

.job-card {
background: #d28110;
    color: #fff;
    padding: 24px;
    height: 100%;
    font-size: 14px;
    border-radius: 5px;
}

.job-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.job-location {
  font-size: 14px;
  margin-bottom: 12px;
}

.job-block {
  margin-bottom: 12px;
}

.job-block ul {
  padding-left: 18px;
  margin: 6px 0 0;
}

.job-block ul li {
  margin-bottom: 4px;
  line-height: 1.5;
}

.apply-btn {
  display: inline-block;
  margin-top: 12px;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  text-decoration: none;
}

.apply-btn:hover {
  background: #ff5252;
}

/* Mobile */
@media (max-width: 576px) {
  .job-card {
    padding: 20px;
    font-size: 14px;
  }
  
}

.enhanced-file {
    position: relative;
}

.uploaded-file {
    margin-top: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.uploaded-file .file-name {
    color: inherit;
    /* uses existing color */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
}

.uploaded-file .remove-file {
    background: none;
    border: none;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    /* SAME color as existing icon */
    opacity: .6;
}

.uploaded-file .remove-file:hover {
    opacity: 1;
}

.d-none {
    display: none;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    /* SAME purple color */
}

