@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Poppins:wght@400;500;600&display=swap');

:root {
    --bg-dark: #0d2b1d;
    --bg-overlay: rgba(6, 31, 20, 0.86);
    --green-accent: #6fd648;
    --blue-accent: #1f6fd6;
    --text-white: #ffffff;
    --text-dim: #d7e6dc;
    --divider: rgba(255, 255, 255, 0.18);
}



.heading {
    font-family: Oswald, sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: rgb(99, 182, 30);
}

.hero-section-arra {
    width: 100%;
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about-section {
    width: 100%;
    padding: 80px 0px;
    background: rgb(245, 245, 245);
}

.about-seation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 36px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

.about-image::before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 40%;
    height: 40%;
    border-left: 18px solid rgb(99, 195, 34);
    border-bottom: 18px solid rgb(99, 195, 34);
    z-index: 1;
}

.about-content {
    padding-top: 10px;
}

.subtitle {
    color: rgb(43, 85, 214);
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 15px;
}

.common-headeing2 {
    font-size: 80px;
    line-height: 1.1;
    color: rgb(99, 195, 34);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: Oswald, sans-serif;
}

.about-content-title-box p {
    font-size: 18px;
    line-height: 200%;
    color: rgb(102, 102, 102);
    margin-bottom: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.divider {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgb(207, 207, 207);
    margin: 38px 0px 37px;
    overflow: hidden;
}

.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 30px;
    height: 30px;
    background: rgb(99, 195, 34);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: 4s linear 0s infinite normal none running runDot;
}

@keyframes runDot {
    0% {
        left: 0px;
    }

    100% {
        left: calc(100% - 14px);
    }
}

.explore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 229px;
    height: 60px;
    text-decoration: none;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    transition: background 0.4s;
    margin-top: 29px;
}

.explore-btn:hover {
    background: rgb(68, 160, 91);
}

.explore-btn span {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: rgb(68, 160, 91);
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    transition: color 0.4s;
}

.explore-btn:hover span {
    color: rgb(255, 255, 255);
}

.explore-btn::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: rgb(68, 160, 91);
    animation: 2s linear 0s infinite normal none running animateTopLinear;
}

.explore-btn::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 2px;
    height: 100%;
    background: rgb(68, 160, 91);
    animation: 2s linear -1s infinite normal none running animateRightLinear;
}

.explore-btn span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: rgb(68, 160, 91);
    animation: 2s linear 0s infinite normal none running animateBottomLinear;
}

.explore-btn span::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 2px;
    height: 100%;
    background: rgb(68, 160, 91);
    animation: 2s linear -1s infinite normal none running animateLeftLinear;
}

.explore-btn:hover::before, .explore-btn:hover::after, .explore-btn:hover span::before, .explore-btn:hover span::after {
    animation-play-state: paused;
}

@keyframes animateTopLinear {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

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

    100% {
        transform: translateY(-100%);
    }
}

@keyframes animateBottomLinear {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

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

    100% {
        transform: translateY(100%);
    }
}

section.insecticides-section {
    padding: 80px 0px;
}

.insecticides-grid {
    background: rgb(255, 255, 255);
    border-radius: 100px;
    padding: 48px 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 11px 0px;
    z-index: 999;
    position: relative;
    margin-bottom: -90px;
}

.insecticides-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

.insecticides-content-box {
    display: flex;
    align-items: center;
    gap: 25px;
}

.insecticides-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgb(31, 79, 191);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insecticides-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.insecticides-heading {
    margin: 0px;
    font-size: 55px;
    font-weight: 700;
    line-height: 1;
    color: rgb(92, 179, 30);
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.insecticides-heading span {
    font-size: 40px;
    line-height: 1;
    margin-top: 6px;
}

.insecticides-title {
    margin-top: 0px;
    font-size: 19px;
    font-weight: 500;
    color: rgb(102, 102, 102);
    line-height: 1.3;
}

.insecticides-service-area {
    width: 100%;
    padding: 146px 0px 60px;
    background-color: rgb(245, 243, 239);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    position: relative;
}

.insecticides-logo-center {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.insecticides-logo-center img {
    max-width: 500px;
    width: 100%;
}

.insecticides-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    position: relative;
    z-index: 1;
}

.insecticides-service-col {
    display: flex;
    height: 100%;
}

.insecticides-service-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.insecticides-service-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(225, 225, 225);
    border-radius: 10px;
    padding: 22px 20px 28px;
    text-align: center;
    position: relative;
    min-height: 340px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 22px;
}

.insecticides-service-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 25px;
}

.insecticides-service-box {
    margin: 0px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insecticides-service-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 147px;
}

.insecticides-service-content h3 {
    margin: 0px 0px 12px;
    font-size: 30px;
    font-weight: 700;
    color: rgb(92, 181, 50);
}

.insecticides-service-content p {
    margin: 0px;
    font-size: 15px;
    line-height: 32px;
    color: rgb(51, 51, 51);
    font-family: 'Poppins', sans-serif;
}

.arrow-btn {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 2px solid rgb(140, 198, 63);
    color: rgb(92, 181, 50);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.arrow-btn:hover {
    background: rgb(140, 198, 63);
    color: rgb(255, 255, 255);
}

.innovation-section {
    width: 100%;
    padding: 50px 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 132px;
}

.innovation-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.67);
    z-index: 0;
}

.innovation-section {
    position: relative;
    z-index: 1;
}

.innovation-container {
    width: 100%;
}

.innovation-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
}

.innovation-image {
    position: relative;
    width: 100%;
    height: 664px;
    overflow: hidden;
    border-radius: 5px;
}

.innovation-image img, .innovation-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.innovation-image video {
    display: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 73px;
    height: 80px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    line-height: 1;
    color: rgb(17, 17, 17);
    cursor: pointer;
    z-index: 2;
    padding-left: 5px;
    transition: 0.3s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgb(73, 199, 47);
    color: rgb(255, 255, 255);
}

.innovation-col-right {
    HEIGHT: 679PX;
}

.innovation-content {
    background: rgb(34, 87, 215);
    color: rgb(255, 255, 255);
    padding: 32px 28px 94px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.innovation-subtitle {
    color: rgb(255, 255, 255);
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 14px;
}

.innovation-title {
    font-family: Oswald, sans-serif;
    font-size: 75px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 28px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
}

.innovation-text-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.innovation-content-after-img {
    position: absolute;
    right: -15px;
    bottom: -10px;
    width: 345px;
}

.innovation-content-after-img img {
    width: 100%;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.blog-section {
    background: rgb(242, 242, 242);
    padding: 63px 0px 80px;
}

.blog-header {
    text-align: center;
    margin-bottom: 39px;
}

.blog-subtitle {
    color: rgb(36, 87, 211);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 57px;
    line-height: 1;
    color: rgb(99, 192, 33);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px;
    font-family: 'Oswald', sans-serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.blog-card-col {
    display: flex;
    height: 100%;
}

.blog-card-wrapper {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    width: 100%;
    height: 100%;
}

.blog-card-wrapper-box {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s, filter 0.5s;
}

.blog-card-wrapper:hover .blog-image img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.blog-content-box {
    position: relative;
    margin: -70px 14px 0px;
    z-index: 2;
    display: flex;
    flex: 1 1 0%;
}

.blog-content {
    background: rgb(247, 247, 247);
    padding: 21px 16px 31px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    width: 100%;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-wrapper:hover .blog-content {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 12px 30px;
}

.blog-content h3 {
    font-size: 24px;
    line-height: 1.15;
    color: rgb(17 18 16);
    margin: 0px 0px 22px;
    font-weight: 500;
    font-family: 'Barlow Condensed';
}

.blog-content p {
    color: rgb(109, 109, 109);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgb(36, 87, 211);
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    min-width: fit-content;
    transition: 0.3s;
    margin-top: 6px;
    width: 128px;
    margin: 0 auto;
}

.blog-btn span {
    font-size: 16px;
    line-height: 1;
    rotate: 309deg;
}

.blog-btn:hover {
    background: rgb(91 191 35);
    transform: translateY(-2px);
}

.contact-section-area {
    width: 100%;
    padding: 80px 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.contact-section-area::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgb(98, 191, 36) 0%, rgb(98, 191, 36) 39%, rgba(0, 0, 0, 0.7) 38%, rgba(8, 8, 8, 0.61) 100%);
    z-index: 0;
}

.contact-section-area::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.contact-section-area .srcn-container {
    position: relative;
    z-index: 1;
}

.contact-section-area .srcn-container {
    position: relative;
    z-index: 1;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 64px;
    align-items: center;
}

.contact-card {
    background: rgb(255, 255, 255);
    padding: 45px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px;
    text-align: center;
}

.eyebrow {
    font-size: 27px;
    font-weight: 600;
    color: rgb(74, 139, 60);
    margin-bottom: -2px;
}

.contact-card h2 {
    font-size: 81px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: rgb(34, 34, 34);
}

.contact-form-input {
    margin-bottom: 18px;
    display: flex;
}

.contact-form-input input, .contact-form-input textarea {
    width: 100%;
    height: 46px;
    padding: 0px 18px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Oswald';
}

.contact-form-input textarea {
    height: 130px;
    padding-top: 15px;
    resize: none;
}

.contact-form-input input:focus, .contact-form-input textarea:focus {
    border-color: rgb(74, 139, 60);
}

.submit-btn {
    width: 160px;
    height: 55px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    background: rgb(74, 139, 60);
    color: rgb(255, 255, 255);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: rgb(50, 101, 40);
}

.contact-col-right {
    width: 100%;
}

.contact-contnet-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgb(253, 249, 249);
    padding: 27px;
    border-radius: 8px;
}

.icon-box-area {
    width: 59px;
    height: 59px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgb(83, 163, 31);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-area i {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.info-text h3 {
    color: rgb(255, 255, 255);
    font-size: 38px;
    margin-bottom: 8px;
    line-height: 58px;
}

.info-text p, .info-text a {
    color: rgb(255, 255, 255);
    font-size: 19px;
    line-height: 1.6;
    text-decoration: none;
}

.footer {
    position: relative;
    background: linear-gradient(120deg, rgba(2, 16, 9, 0.92) 0%, rgba(1, 6, 4, 0.75) 45%, rgba(6, 40, 22, 0.92) 100%) 0% 0% / cover, url("../images/footer-banner.avif");
    color: var(--text-white);
    padding: 60px 0px 0px;
    overflow: hidden;
}

.footer::before {
    pointer-events: none;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 44px;
}

.brand-block {
    max-width: 420px;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
}

.logo-mark {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.contact-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 22px;
    line-height: 1.5;
}

.contact-list svg {
    flex-shrink: 0;
    stroke: var(--green-accent);
    margin-top: 2px;
}

.contact-list a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--text-white);
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 34px;
}

.social-row a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.15s;
    text-align: center;
}

.social-row a:hover {
    transform: translateY(-3px);
}

.social-row i {
    font-size: 19px;
    color: #000000;
}

.footer-content-area h4 {
    font-weight: 700;
    color: var(--green-accent);
    font-size: 26px;
    margin: 6px 0px 26px;
}

.footer-content-area ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.footer-content-area ul a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    transition: color 0.15s, padding-left 0.15s;
}

.footer-content-area ul a:hover {
    color: var(--green-accent);
    padding-left: 4px;
}

.footer-posts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-post {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-post-thumb {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-post-date {
    display: block;
    font-size: 17px;
    color: rgb(133, 133, 133);
    margin-bottom: 6px;
    font-weight: 600;
}

.footer-post-title {
    margin: 0px;
    font-size: 22px;
    line-height: 1.5;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.footer-post-title:hover {
    color: rgb(126, 217, 87);
    cursor: pointer;
}

.footer-bottom {
    position: relative;
    border-top: 1px solid var(--divider);
    text-align: center;
    padding: 26px 0px;
    font-size: 22px;
    color: var(--text-dim);
}

.footer-bottom b {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

#pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#pagination button {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    padding: 8px 16px;
    transition: background-color 0.3s;
}

#pagination button:hover {
    background-color: #f0f0f0;
}

#pagination button.active {
    background-color: #63b622;
    color: #fff;
}

#pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

figure {
    margin: 0;
}

a {
    text-decoration: none;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050c1e url('../images/blog-banner-img.avif') center/cover no-repeat;
}

.hero-section {
    background: #050c1e url('../images/about-banner-img.avif') center/cover no-repeat !important;
}

.insecticides-product {
    background: #050c1e url('../images/insecticides-banner-img.avif') center/cover no-repeat !important;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(0 0 0 / 12%), rgb(6 6 6 / 9%)), linear-gradient(rgb(0 0 0 / 35%) 1px, #0000005c 1px);
}

.hero-section>* {
    position: relative;
    z-index: 1;
}

.blog-elementor-headline {
    margin: 0;
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    color: #fff;
    letter-spacing: 4px;
    text-transform: capitalize;
}

.blog-elementor-headline .creative-text {
    font-style: italic;
}

.blog-section-area {
    padding: 4rem 0;
}

.container {
    width: 90%;
    max-width: 1680px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-vision-section {
    padding: 70px 20px;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 108px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.mv-card {
    position: relative;
    background: #fff;
    border-radius: 40px;
    padding: 87px 74px 74px;
    width: 100%;
    box-shadow: -1px 0px 6px 4px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Top Green Label */
.mv-label {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #63c316;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 80px;
    border-radius: 36px 36px 0 0;
    letter-spacing: 2px;
    line-height: 1;
    text-align: center;
    min-width: 280px;
}

/* Triangle Pointer */
.mv-label::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -44px;
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-top: 44px solid #63c316;
}

.mv-content {
    display: flex;
    align-items: center;
    gap: 35px;
}

.mv-icon {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
}

.mv-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mv-text {
    color: #5f646d;
    font-size: 20px;
    line-height: 1.9;
    font-weight: 400;
}


@media(max-width:768px) {
    .mv-card {
        padding: 75px 30px 35px;
    }

    .mv-container {
        grid-template-columns: 1fr;
    }

    .mv-label {
        font-size: 42px;
        padding: 16px 55px;
    }

    .mv-content {
        flex-direction: column;
        text-align: center;
        gap: 22px;
    }

    .mv-icon {
        width: 110px;
        height: 110px;
    }

    .mv-text {
        font-size: 18px;
        line-height: 1.8;
    }
}

@media(max-width:480px) {
    .mv-label {
        font-size: 34px;
        padding: 14px 45px;
        min-width: 200px;
    }

    .mv-text {
        font-size: 16px;
    }
}

.blog-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    display: flex;
    position: relative;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card:hover .blog-card-img::before {
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

.blog-card-img {
    overflow: hidden;
    position: relative;
}

.blog-card-img figure {
    margin: 0;
}

.blog-card-img::before {
    position: absolute;
    top: 0;
    left: 30px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: '';
    transition: transform 0.6s;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    z-index: 1;
}

.blog-card-img img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    transition: opacity 0.35s;
}

.blog-card-content {
    padding: 15px 17px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3px;
}

.blog-card-category {
    color: #2055c7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 16px;
}

.blog-card-title {
    margin: 0px;
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    line-height: 124%;
}

.blog-card-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #524d4d;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: inherit;
    transition: color 0.2s ease-in-out;
}

.blog-card-title a:hover {
    color: #555;
}

.blog-card.hidden {
    display: none;
}

.pagination-container {
    display: flex;
    justify-content: end;
    align-items: end;
    margin-top: 3rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    font-family: 'Barlow Condensed', sans-serif;
    align-items: center;
    gap: 0.3rem;
    z-index: 1;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}

.pagination-btn.prev-btn, .pagination-btn.next-btn {
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 50%;
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: -1;
}

.pagination-btn:hover {
    color: #fff;
}

.pagination-btn:hover::before {
    transform: translateX(0);
}

.pagination-btn.active {
    background-color: transparent;
    color: #fff;
    border-color: #333;
    cursor: default;
}

.pagination-btn.active::before {
    transform: translateX(0);
}

.pagination-btn:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover::before {
    transform: translateX(-100%);
}

/* Blog Post Detail Styles */
.blog-post-header {
    text-align: center;
}

.blog-post-header .blog-post-category {
    display: inline-block;
    color: #fff;
    font-size: 44px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 1.5rem;
}

.blog-post-meta-info {
    color: #fff;
    font-size: 0.9rem;
}

.blog-post-meta-info .author {
    font-weight: 700;
}

.blog-post-meta-info .date::before {
    content: '|';
    margin: 0 0.5rem;
    color: #ccc;
}

.blog-post-content-area {
    padding: 50px 0;
    background-color: #fff;
    margin: -50px auto 0 auto;
    position: relative;
}

.blog-post-image {
    height: auto;
    margin-bottom: 14px;
}

.blog-post-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 600PX;
}

.blog-post-body {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.blog-post-body h1 {
    margin: 0px;
    font-size: 40px;
    color: rgb(0, 0, 0);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    line-height: 124%;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.blog-post-body h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    color: #000;
    font-weight: 600;
    margin: 5px 0;
}

.blog-post-body a {
    color: #2055c7;
    font-weight: 400;
    font-size: 18px;
}

.blog-post-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    color: #000;
    font-weight: 100;
    margin: 5px 0;
}

.blog-post-body p {
    font-size: 16px;
    line-height: 177%;
    color: #141313;
    font-weight: 300;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.blog-post-body ul {
    list-style: disc;
    padding-left: 2rem;
    font-size: 16px;
    line-height: 27px;
    font-weight: 300;
    display: inline-table;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    margin: 9px 0;
    color: #141313;
}

.blog-post-body li {
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.blog-post-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 18%);
}

.widget-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
}

.featured-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-posts-list li {
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 0;
}

.featured-post-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.featured-post-img {
    width: 130px;
    height: 116px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.featured-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.featured-post-item:hover .featured-post-img img {
    transform: scale(1.08);
}

.featured-post-content {
    flex: 1;
}

.featured-post-content h4 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.4;
    color: #242424;
    font-weight: 600;
    transition: .3s;
    font-family: 'Barlow Condensed', sans-serif;
}

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: Arial, sans-serif;
}

.blog-post-body table th, .blog-post-body table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    font-size: 20px;
}

.blog-post-body table th {
    background-color: #9d9d9d0f;
    color: #000;
    font-weight: 600;
    font-family: 'Barlow Condensed', sans-serif;
}

.blog-post-body table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.blog-post-body table tr:hover {
    background-color: #f1f1f1;
}

.blog-card-date {
    margin-bottom: 3px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #686b72;
}

.featured-post-item:hover .featured-post-content h4 {
    color: #2055c7;
}

.faq-contnet {
    padding: 10px 0 30px;
}

.faq-item {
    background: #fff;
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 22px;
    text-align: left;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 22px;
    position: relative;
    font-family: 'Barlow Condensed', sans-serif;
    color: #000;
    font-weight: 500;
}

.faq-question::before {
    content: "Q. ";
    font-weight: 700;
    margin-right: 6px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 18px;
    font-size: 39px;
    TOP: 0PX;
    COLOR: #424242;
}

.faq-item.active .faq-question {
    background-color: #f0f0f0;
}

.faq-item.active .faq-question::after {
    content: "âˆ’";
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 223%;
    color: #141313;
    font-weight: 300;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.product-section-area {
    position: relative;
    background: linear-gradient(rgb(255 246 232) 0%, rgba(249, 249, 249, 0.13) 100%);
    PADDING: 50PX 0;
}

.card-container-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 31px;
}

.product-card {
    display: flex;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
    transition: .4s;
    margin-bottom: 20px;
}

.herbicides-card-box {
    background-color: #389305 ! IMPORTANT;
}

.product-image {
    width: 50%;
    background: #389305;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

.product-image img {
    width: 100%;
    transition: .4s;
    object-fit: cover;
    height: 290px;
    max-width: 292px;
}

.product-content {
    width: 50%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category {
    color: #58AE22;
    font-size: 22px;
    margin-bottom: 20px;
}

.logo-row img {
    width: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #111;
    font-family: 'Anton', sans-serif;
}

.product-desc {
    font-size: 20px;
    font-weight: 600;
    color: #1D54D7;
    line-height: 1.5;
}

/* Button */
.product-btn {
    width: 140px;
    text-align: center;
    margin-top: 22px;
    padding: 12px 25px;
    text-decoration: none;
    background: #2055c7;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: .4s;
}

.product-card:hover .product-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-btn:hover {
    background: #065f1c;
}

.product-popup {
    display: flex;
}

.popup-image {
    width: 48%;
    background: #338505;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.popup-image img {
    width: 100%;
    object-fit: cover;
    max-width: 360px;
    height: 365px;
}

.popup-content {
    width: 52%;
    padding: 5px 26px;
}

.popup-content h2 {
    font-size: 37px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.popup-content h4 {
    color: #2458d3;
    margin-bottom: 35px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.product-box-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.info-box-icon {
    background-color: #5bbf23;
    padding: 7px;
    border-radius: 50%;
}

.info-box img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.info-box strong {
    color: #53b21b;
}

.product-popup-title {
    font-size: 20px;
    font-weight: 400;
    color: #7a7a7a;
    font-family: "Lato", sans-serif;
}

.modal-content .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

section.policy-list-area {
    padding: 50px 0;
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
}

.policy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 37px;
    border: 2px solid #2F5BEA;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    max-width: 887px;
    margin: 0 auto;
    width: 100%;
}

.policy-item:hover {
    background: #2F5BEA;
    color: #fff;
}

.arrow-circle {
    width: 42px;
    height: 42px;
    border: 2px solid #2F5BEA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.policy-item:hover .arrow-circle {
    background: #fff;
}

.policy-item:hover svg path {
    stroke: #2F5BEA;
}

.fy-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    justify-content: center;
}

.fy-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 215px;
    padding: 6px 23px;
    border: 2px solid #69c23d;
    border-radius: 40px;
    background: #fff;
    color: #69c23d;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
p#modal-subtitle {
    font-size: 20px;
    font-weight: 400;
}
.fy-tab input {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #2563eb;
}

.fy-tab.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.product-section-banner img {
    width: 100%;
    object-fit: cover;
    height: 302px;
}

.fy-tab.active input {
    accent-color: #fff;
}


.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}