/* Homepage Hero Section */
.innov-hero-section {
    --hero-green: #0f5a1f;
    --hero-deep: #003d12;
    --hero-orange: #f5a400;
    --hero-lime: #87c80f;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
    background-image: url("hero.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    isolation: isolate;
}

.innov-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgb(27 81 41);
}

.innov-hero-slider,
.innov-hero-slide,
.innov-hero-container {
    height: 100%;
}

.innov-hero-slider {
    position: relative;
    z-index: 2;
}

.innov-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 900ms ease;
}

.innov-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.innov-hero-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: center;
    gap: 56px;
    padding: 72px 0 96px;
}

.innov-hero-content {
    max-width: 650px;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 900ms ease 160ms, opacity 900ms ease 160ms;
}

.innov-hero-slide.active .innov-hero-content {
    transform: translateY(0);
    opacity: 1;
}

.innov-hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #d8ff9c;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: capitalize;
}

.innov-hero-tagline::before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--hero-orange);
    box-shadow: 0 0 24px rgba(245, 164, 0, 0.8);
}

.innov-hero-title {
    margin: 0 0 24px;
    color: #ffffff;
    font-size:45px;
    font-weight: 800;
   
    letter-spacing: 0;
    text-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
}

.innov-hero-subtitle {
    max-width: 560px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.75;
    font-weight: 500;
}

.innov-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-innov-primary,
.btn-innov-outline {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border-radius: 999px;
    color: #ffffff !important;
    font-weight: 800;
    text-decoration: none;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.btn-innov-primary {
    background: linear-gradient(135deg, var(--hero-orange), #ffbe2e);
    box-shadow: 0 18px 38px rgba(245, 164, 0, 0.28);
}

.btn-innov-primary::after,
.btn-innov-outline::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.82rem;
}

.btn-innov-outline {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.btn-innov-primary:hover,
.btn-innov-outline:hover {
    transform: translateY(-3px);
    color: #ffffff !important;
}

.btn-innov-outline:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.18);
}

.innov-hero-visual {
    position: relative;
    min-height: 600px;
    transform: translateX(24px) scale(0.96);
    opacity: 0;
    transition: transform 900ms ease 260ms, opacity 900ms ease 260ms;
}

.innov-hero-slide.active .innov-hero-visual {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.innov-circle-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(86vw, 480px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.innov-circle-frame img,
.innov-circle-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1.05) contrast(1.06);
}

.innov-circle-video {
    min-width: 100%;
    min-height: 100%;
}

.innov-circle-ring {
    position: absolute;
    inset: -34px;
    z-index: 2;
    border-radius: 50%;
    border: 6px dotted rgba(255, 255, 255, 0.92);
    animation: innovRotate 24s linear infinite;
    pointer-events: none;
}

.innov-stat-card {
    position: absolute;
    z-index: 4;
    width: 168px;
    min-height: 122px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 20px 16px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 22px;
    color: #ffffff;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: innovFloat 6s ease-in-out infinite;
}

.innov-stat-card strong {
    font-size: 2.45rem;
    line-height: 1;
    font-weight: 900;
}

.kg-live-edit-badge {
    position: fixed;
    top: 86px;
    right: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #14351d;
    background: #ffffff;
    border: 1px solid rgba(20, 53, 29, 0.16);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.kg-live-edit-badge a {
    color: #0f5a1f;
    text-decoration: none;
}

.kg-editing-now {
    outline: 3px solid #f5a400;
    outline-offset: 6px;
    border-radius: 6px;
    cursor: text;
}

.kg-hero-url-editor,
.kg-hero-media-editor {
    position: relative;
    z-index: 20;
}

.kg-hero-url-editor {
    display: grid;
    gap: 8px;
    max-width: 520px;
    margin-top: 18px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.kg-hero-url-editor label {
    display: grid;
    gap: 5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 800;
}

.kg-hero-url-editor input {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #14351d;
    background: #ffffff;
}

.kg-hero-media-editor {
    position: absolute;
    right: 12px;
    bottom: 34px;
}

.kg-hero-media-editor label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    color: #14351d;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
}

.kg-hero-media-editor input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    clip: rect(0 0 0 0);
}

.innov-stat-card span {
    font-size: 0.86rem;
    line-height: 1.18;
    font-weight: 800;
}

.stat-years {
    top: 48px;
    left: -12px;
    background: rgba(116, 176, 0, 0.78);
}

.stat-farmers {
    top: 244px;
    left: -72px;
    background: rgba(0, 111, 28, 0.78);
    animation-delay: -1.2s;
}

.stat-projects {
    right: -34px;
    bottom: 38px;
    background: rgba(245, 164, 0, 0.84);
    animation-delay: -2.1s;
}

.stat-customers {
    right: -72px;
    top: 178px;
    background: rgba(255, 255, 255, 0.18);
    animation-delay: -3s;
}

.innov-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.innov-hero-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(245, 164, 0, 0.82);
}

.innov-hero-prev {
    left: 24px;
}

.innov-hero-next {
    right: 24px;
}

.innov-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 6;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.innov-hero-dots button {
    width: 13px;
    height: 13px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 0 rgba(245, 164, 0, 0);
    transition: width 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.innov-hero-dots button.active {
    width: 42px;
    background: var(--hero-orange);
    animation: innovDotPulse 1.4s ease-in-out infinite;
}

.innov-floating-leaves {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.innov-floating-leaves span {
    position: absolute;
    width: 28px;
    height: 16px;
    border-radius: 100% 0 100% 0;
    background: linear-gradient(135deg, #d7ff8b, #2f9f29 58%, #0f5a1f);
    opacity: 0.62;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.2));
    animation: innovLeafDrift 13s linear infinite;
}

.innov-floating-leaves span:nth-child(1) {
    left: 8%;
    top: -8%;
}

.innov-floating-leaves span:nth-child(2) {
    left: 28%;
    top: -10%;
    animation-delay: -3s;
    animation-duration: 15s;
}

.innov-floating-leaves span:nth-child(3) {
    left: 52%;
    top: -9%;
    animation-delay: -7s;
    animation-duration: 12s;
}

.innov-floating-leaves span:nth-child(4) {
    left: 74%;
    top: -12%;
    animation-delay: -5s;
    animation-duration: 16s;
}

.innov-floating-leaves span:nth-child(5) {
    left: 91%;
    top: -7%;
    animation-delay: -9s;
    animation-duration: 14s;
}

@keyframes innovRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes innovFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes innovDotPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 164, 0, 0.45);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 164, 0, 0);
    }
}

@keyframes innovLeafDrift {
    0% {
        transform: translate3d(0, -20px, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(-90px, 112vh, 0) rotate(310deg);
    }
}

@media (max-width: 1199px) {
    .innov-hero-container {
        width: min(100% - 40px, 1040px);
        grid-template-columns: 1fr 0.9fr;
        gap: 34px;
    }

    .innov-hero-visual {
        min-height: 540px;
    }

    .innov-circle-frame {
        width: min(42vw, 410px);
    }
}

@media (max-width: 991px) {
    .innov-hero-section {
        min-height: 780px;
    }

    .innov-hero-container {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 24px;
        padding: 54px 0 88px;
        text-align: center;
    }

    .innov-hero-content {
        max-width: 720px;
        margin: 0 auto;
    }

    .innov-hero-tagline {
        justify-content: center;
    }

    .innov-hero-buttons {
        justify-content: center;
    }

    .innov-hero-visual {
        min-height: 360px;
        max-width: 580px;
        width: 100%;
        margin: 0 auto;
    }

    .innov-circle-frame {
        width: min(58vw, 340px);
        border-width: 9px;
    }

    .innov-stat-card {
        width: 138px;
        min-height: 96px;
        padding: 14px 12px;
        border-radius: 18px;
    }

    .innov-stat-card strong {
        font-size: 1.8rem;
    }

    .innov-stat-card span {
        font-size: 0.74rem;
    }

    .stat-years {
        top: 2px;
        left: 30px;
    }

    .stat-farmers {
        top: 152px;
        left: -6px;
    }

    .stat-projects {
        right: 22px;
        bottom: 0;
    }

    .stat-customers {
        top: 94px;
        right: -8px;
    }

    .innov-hero-arrow {
        width: 44px;
        height: 44px;
    }

    .innov-hero-prev {
        left: 12px;
    }

    .innov-hero-next {
        right: 12px;
    }
}

@media (max-width: 575px) {
    .innov-hero-section {
        min-height: 760px;
    }

    .innov-hero-container {
        width: min(100% - 28px, 420px);
        padding: 38px 0 76px;
    }

    .innov-hero-title {
        font-size: 17px;
    }

    .innov-hero-subtitle {
        margin-bottom: 24px;
        font-size: 0.96rem;
    }

    .innov-hero-tagline {
        font-size: 0.72rem;
    }

    .innov-hero-tagline::before {
        width: 26px;
    }

    .btn-innov-primary,
    .btn-innov-outline {
        width: 100%;
        min-height: 50px;
        padding: 0 18px;
    }

    .innov-hero-visual {
        min-height: 350px;
    }

    .innov-circle-frame {
        width: min(72vw, 260px);
        border-width: 7px;
    }

    .innov-circle-ring {
        inset: -24px;
        border-width: 4px;
    }

    .innov-stat-card {
        width: 104px;
        min-height: 76px;
        padding: 10px 8px;
        gap: 3px;
        border-radius: 14px;
    }

    .innov-stat-card strong {
        font-size: 1.35rem;
    }

    .innov-stat-card span {
        font-size: 0.66rem;
    }

    .stat-years {
        top: 0;
        left: 0;
    }

    .stat-farmers {
        top: 132px;
        left: -4px;
    }

    .stat-projects {
        right: 0;
        bottom: 0;
    }

    .stat-customers {
        top: 54px;
        right: -4px;
    }

    .innov-hero-arrow {
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .innov-hero-arrow:hover {
        transform: scale(1.04);
    }

    .innov-hero-prev {
        left: 18px;
    }

    .innov-hero-next {
        right: 18px;
    }

    .innov-hero-dots {
        bottom: 35px;
    }
}
