/* =============================================
   SHIVRAJ AGRO TECH - Premium Stylesheet
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --deep-forest: #075b3a;
    --agri-green: #138a4b;
    --fresh-leaf: #43a047;
    --light-green: #e8f5e9;
    --warm-orange: #f28c28;
    --dark-charcoal: #17211b;
    --off-white: #fafcf8;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(7, 91, 58, 0.06);
    --shadow-md: 0 4px 24px rgba(7, 91, 58, 0.1);
    --shadow-lg: 0 8px 40px rgba(7, 91, 58, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark-charcoal);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-charcoal);
}

a {
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 30px 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 20px 0;
    }
}

.section-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--agri-green);
    margin-bottom: 12px;
    display: inline-block;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.05rem;
    color: #555;
    max-width: 600px;
    line-height: 1.8;
}

.section-desc-light {
    color: rgba(255, 255, 255, 0.8);
}

/* ---- Buttons ---- */
.btn-primary-custom {
    background: var(--deep-forest);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-primary-custom:hover {
    background: var(--agri-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background: transparent;
    color: var(--deep-forest);
    border: 2px solid var(--deep-forest);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-outline-custom:hover {
    background: var(--deep-forest);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white-custom {
    background: var(--white);
    color: var(--deep-forest);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-white-custom:hover {
    background: var(--light-green);
    color: var(--deep-forest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-orange-outline {
    background: transparent;
    color: var(--warm-orange);
    border: 2px solid var(--warm-orange);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-orange-outline:hover {
    background: var(--warm-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================================================
   HEADER / NAVBAR
   ================================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    transition: var(--transition);
    padding: 12px 0;
}

.main-header.transparent-header {
    background: transparent;
}

.main-header.scrolled {
    background: (255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
    padding: 6px 0;
    backdrop-filter: blur(12px);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    padding-right: 50px;
    gap: 10px;
}
.navbar-brand-custom img {
    height: 50px;
}
.main-header.scrolled .navbar-brand-custom {
    color: var(--deep-forest) !important;
}

.navbar-brand-custom .brand-icon {
    width: 38px;
    height: 38px;
    background: var(--agri-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.nav-link-custom {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: rgb(0, 0, 0) !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}
.nav-link-custom::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--fresh-leaf);
    transition: var(--transition);
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: calc(100% - 32px);
}
.nav-link-custom:hover {
    color: var(--warm-orange) !important;
}

.main-header.scrolled .nav-link-custom {
    color: var(--dark-charcoal) !important;
}
.main-header.scrolled .nav-link-custom:hover {
    color: var(--agri-green) !important;
}
.main-header.scrolled .nav-link-custom::after {
    background: var(--agri-green);
}

.header-cta {
    background: var(--fresh-leaf);
    color: var(--light-green) !important;
    padding: 9px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    font-size: 0.82rem !important;
    transition: var(--transition);
}
.header-cta:hover {
    background: var(--fresh-leaf);
    color: var(--white) !important;
    transform: translateY(-1px);
}
.header-cta::after {
    display: none !important;
}

.main-header.scrolled .header-cta {
    background: var(--deep-forest);
    color: var(--white) !important;
}
.main-header.scrolled .header-cta:hover {
    background: var(--agri-green);
    color: var(--white) !important;
}

.header-whatsapp {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.3rem;
    padding: 8px !important;
}
.header-whatsapp::after {
    display: none !important;
}
.main-header.scrolled .header-whatsapp {
    color: #25d366 !important;
}

.navbar-toggler-custom {
    border: none;
    background: none;
    padding: 4px;
    outline: none;
}
.navbar-toggler-custom .toggler-icon {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--warm-orange);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}
.main-header.scrolled .toggler-icon {
    background: var(--deep-forest);
}

/* Mobile nav */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        margin-top: 10px;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    .nav-link-custom {
        color: var(--dark-charcoal) !important;
        padding: 10px 0 !important;
    }
    .nav-link-custom::after {
        left: 0;
    }
    .nav-link-custom:hover::after {
        width: 40px;
    }
    .header-cta {
        background: var(--deep-forest);
        color: var(--white) !important;
        display: inline-block;
        margin-top: 8px;
    }
    .header-whatsapp {
        color: #25d366 !important;
    }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--deep-forest) 0%, #0a7a4e 50%, var(--agri-green) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--white);
}
.hero-bg-shapes .shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -5%;
}
.hero-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    bottom: 5%;
    left: -3%;
}
.hero-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 20%;
}

/* leaf decoration */
.hero-leaf {
    position: absolute;
    opacity: 0.08;
    font-size: 120px;
    color: var(--white);
    animation: floatLeaf 6s ease-in-out infinite;
}
.hero-leaf-1 {
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}
.hero-leaf-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
    font-size: 80px;
}
.hero-leaf-3 {
    top: 60%;
    right: 25%;
    animation-delay: 4s;
    font-size: 60px;
}

@keyframes floatLeaf {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

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

.hero-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--fresh-leaf);
}

.hero-heading {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}
.hero-heading .highlight {
    color: var(--fresh-leaf);
}

.hero-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
}
.hero-trust-item i {
    color: var(--fresh-leaf);
    font-size: 1rem;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-image-wrapper img {
    max-height: 560px;
    width: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.hero-image-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-badge-1 {
    bottom: 15%;
    left: -10%;
}
.hero-badge-2 {
    top: 10%;
    right: -5%;
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero-image-wrapper img {
        max-height: 380px;
        margin-top: 40px;
    }
    .hero-image-badge {
        display: none;
    }
}
@media (max-width: 576px) {
    .hero-image-wrapper img {
        max-height: 280px;
    }
}

/* =========================================================
   SHIVRAJ AGRO TECH HERO SLIDER
   ========================================================= */

.shb-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8fcf8;
}

.shbHeroSwiper {
    width: 100%;
    overflow: hidden;
}

.shb-hero-slide {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px 0;
}

/* GREEN SLIDE */

.shb-green-slide {
    background: radial-gradient(circle at 85% 50%, rgba(67, 160, 71, 0.13), transparent 35%),
        linear-gradient(135deg, #f7fcf8 0%, #ffffff 55%, #edf8ef 100%);
}

/* ORANGE SLIDE */

.shb-orange-slide {
    background: radial-gradient(circle at 85% 50%, rgba(242, 140, 40, 0.15), transparent 35%),
        linear-gradient(135deg, #fffaf4 0%, #ffffff 55%, #fff4e7 100%);
}

/* BACKGROUND DECORATIONS */

.shb-hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shb-circle-one {
    width: 500px;
    height: 500px;
    right: -180px;
    top: -180px;
    background: rgba(19, 138, 75, 0.08);
}

.shb-circle-two {
    width: 280px;
    height: 280px;
    left: -130px;
    bottom: -150px;
    background: rgba(67, 160, 71, 0.08);
}

/* HERO ROW */

.shb-hero-row {
    position: relative;
    z-index: 2;
    min-height: 540px;
}

/* CONTENT */

.shb-hero-content {
    max-width: 650px;
    position: relative;
    z-index: 5;
}

.shb-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #075b3a;
    margin-bottom: 20px;
}

.shb-orange-slide .shb-hero-eyebrow {
    color: #d86f10;
}

.shb-hero-eyebrow > span {
    display: inline-block;
    width: 38px;
    height: 3px;
    border-radius: 10px;
    background: #43a047;
}

.shb-orange-slide .shb-hero-eyebrow > span {
    background: #f28c28;
}

/* HEADING */

.shb-hero-content h1,
.shb-hero-content h2 {
    margin: 0 0 22px;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.03;

    font-weight: 800;
    letter-spacing: -2px;

    color: #17211b;
}

.shb-hero-content h1 strong,
.shb-hero-content h2 strong {
    color: #075b3a;
}

.shb-orange-slide .shb-hero-content h2 strong {
    color: #f28c28;
}

/* DESCRIPTION */

.shb-hero-content p {
    max-width: 570px;

    margin: 0 0 30px;

    font-size: 17px;
    line-height: 1.75;

    color: #56635b;
}

/* BUTTONS */

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

.shb-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;

    text-decoration: none;

    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.shb-hero-btn:hover {
    transform: translateY(-3px);
}

/* GREEN BUTTON */

.shb-btn-green {
    color: #ffffff;
    background: #075b3a;

    box-shadow: 0 10px 25px rgba(7, 91, 58, 0.18);
}

.shb-btn-green:hover {
    color: #ffffff;
    background: #138a4b;
    box-shadow: 0 14px 30px rgba(7, 91, 58, 0.25);
}

/* ORANGE BUTTON */

.shb-btn-orange {
    color: #ffffff;
    background: #f28c28;

    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.2);
}

.shb-btn-orange:hover {
    color: #ffffff;
    background: #d97815;
}

/* OUTLINE / WHITE BUTTON */

.shb-btn-white {
    color: #075b3a;
    background: #ffffff;
    border: 1px solid #d5e2d8;
}

.shb-btn-white:hover {
    color: #ffffff;
    background: #075b3a;
    border-color: #075b3a;
}

/* PRODUCT IMAGE */

.shb-hero-product {
    position: relative;

    width: 100%;
    max-width: 650px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
}

/* IMAGE GLOW */

.shb-product-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(67, 160, 71, 0.2) 0%, rgba(67, 160, 71, 0.08) 45%, transparent 70%);

    filter: blur(5px);
}

.shb-orange-slide .shb-product-glow {
    background: radial-gradient(circle, rgba(242, 140, 40, 0.2) 0%, rgba(242, 140, 40, 0.08) 45%, transparent 70%);
}

/* PRODUCT */

.shb-hero-product img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    max-width: 580px;
    height: 500px;

    object-fit: contain;

    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.14));
}

/* BADGES */

.shb-product-badge {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(7, 91, 58, 0.12);

    color: #075b3a;

    font-size: 12px;
    font-weight: 700;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(8px);
}

.shb-product-badge i {
    font-size: 17px;
}

.shb-badge-top {
    top: 12%;
    right: 3%;
}

.shb-badge-bottom {
    bottom: 12%;
    left: 3%;
}

.shb-orange-badge {
    color: #d86f10;
    border-color: rgba(242, 140, 40, 0.18);
}

/* CAPACITY CHIPS */

.shb-capacity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    max-width: 560px;

    margin-bottom: 28px;
}

.shb-capacity-list span {
    padding: 7px 13px;

    border-radius: 50px;

    background: #e8f5e9;

    color: #075b3a;

    font-size: 11px;
    font-weight: 700;

    border: 1px solid rgba(7, 91, 58, 0.08);
}

/* TRAY SPECIFICATIONS */

.shb-tray-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    max-width: 590px;

    margin-bottom: 28px;
}

.shb-tray-specs span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;

    border-radius: 6px;

    background: #fff4e7;

    color: #a85d13;

    border: 1px solid rgba(242, 140, 40, 0.15);

    font-size: 11px;
    font-weight: 700;
}

/* NAVIGATION */

.shb-slider-navigation {
    position: absolute;

    z-index: 20;

    right: 35px;
    bottom: 35px;

    display: flex;
    gap: 9px;
}

.shb-slider-arrow {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(7, 91, 58, 0.15);

    border-radius: 50%;

    background: #ffffff;

    color: #075b3a;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.shb-slider-arrow:hover {
    color: #ffffff;
    background: #075b3a;
    border-color: #075b3a;

    transform: translateY(-2px);
}

.shb-orange-slide .shb-slider-arrow:hover {
    background: #f28c28;
    border-color: #f28c28;
}

/* PAGINATION */

.shb-hero-pagination {
    position: absolute !important;

    z-index: 20 !important;

    left: 50% !important;
    bottom: 35px !important;

    width: auto !important;

    transform: translateX(-50%);
}

.shb-hero-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;

    margin: 0 5px !important;

    opacity: 0.35;

    background: #075b3a;

    transition: all 0.3s ease;
}

.shb-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;

    border-radius: 10px;

    opacity: 1;
}

/* =========================================================
   SWIPER ACTIVE ANIMATIONS
   ========================================================= */

.shb-hero-slide .shb-hero-content > *,
.shb-hero-slide .shb-hero-product {
    opacity: 0;
    transform: translateY(30px);

    transition: opacity 0.8s ease, transform 0.8s ease;
}

.shb-hero-slide .shb-hero-product {
    transform: translateX(60px) scale(0.94);
}

.shb-hero-slide.swiper-slide-active .shb-hero-content > * {
    opacity: 1;
    transform: translateY(0);
}

.shb-hero-slide.swiper-slide-active .shb-hero-product {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.shb-hero-slide.swiper-slide-active .shb-hero-eyebrow {
    transition-delay: 0.15s;
}

.shb-hero-slide.swiper-slide-active h1,
.shb-hero-slide.swiper-slide-active h2 {
    transition-delay: 0.25s;
}

.shb-hero-slide.swiper-slide-active p {
    transition-delay: 0.35s;
}

.shb-hero-slide.swiper-slide-active .shb-capacity-list,
.shb-hero-slide.swiper-slide-active .shb-tray-specs {
    transition-delay: 0.4s;
}

.shb-hero-slide.swiper-slide-active .shb-hero-buttons {
    transition-delay: 0.5s;
}

.shb-hero-slide.swiper-slide-active .shb-hero-product {
    transition-delay: 0.25s;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
    .shb-hero-slide {
        min-height: auto;
        padding: 70px 0 100px;
    }

    .shb-hero-row {
        min-height: auto;
    }

    .shb-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .shb-hero-eyebrow {
        justify-content: center;
    }

    .shb-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .shb-capacity-list,
    .shb-tray-specs {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .shb-hero-product {
        margin-top: 35px;
    }

    .shb-hero-product img {
        height: 430px;
    }

    .shb-slider-navigation {
        right: 25px;
        bottom: 22px;
    }

    .shb-hero-pagination {
        bottom: 38px !important;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .shb-hero-slide {
        padding: 70px 0 90px;
    }

    .shb-hero-content h1,
    .shb-hero-content h2 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .shb-hero-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .shb-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .shb-hero-eyebrow > span {
        width: 25px;
    }

    .shb-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .shb-hero-btn {
        width: 100%;
    }

    .shb-hero-product {
        padding: 10px;
        margin-top: 25px;
    }

    .shb-hero-product img {
        height: 320px;
    }

    .shb-product-glow {
        width: 280px;
        height: 280px;
    }

    .shb-product-badge {
        padding: 8px 11px;
        font-size: 9px;
    }

    .shb-badge-top {
        top: 3%;
        right: 0;
    }

    .shb-badge-bottom {
        bottom: 3%;
        left: 0;
    }

    .shb-capacity-list span {
        font-size: 9px;
        padding: 6px 9px;
    }

    .shb-tray-specs span {
        font-size: 9px;
        padding: 7px 9px;
    }

    .shb-slider-navigation {
        right: 15px;
        bottom: 15px;
    }

    .shb-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .shb-hero-pagination {
        bottom: 28px !important;
    }

    .shb-hero-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    .shb-hero-pagination .swiper-pagination-bullet-active {
        width: 22px;
    }

    .shb-circle-one {
        width: 300px;
        height: 300px;
    }

    .shb-circle-two {
        width: 180px;
        height: 180px;
    }
}

/* ================================================
   FEATURED PRODUCT
   ================================================ */
.featured-section {
    background: var(--white);
    position: relative;
}
.featured-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.featured-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.capacity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}
.capacity-tag {
    background: var(--light-green);
    color: var(--deep-forest);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: default;
}
.capacity-tag:hover {
    background: var(--deep-forest);
    color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
}
.feature-item i {
    color: var(--agri-green);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .featured-image-wrapper img {
        height: 300px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   WHY US SECTION
   ================================================ */
.why-section {
    background: var(--off-white);
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(7, 91, 58, 0.06);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--agri-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-icon {
    width: 100%px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.why-card-icon i {
    height: 56px;
    width: 56px;
    background: var(--light-green);
    border-radius: 14px;
    font-size: 1.7rem;
    padding-top: 5px;
    margin-bottom: 18px;
    color: var(--deep-forest);
}
.why-card:hover .why-card-icon i {
    background: var(--deep-forest);
    color: var(--white);
}

.why-card-number {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--agri-green);
    margin-bottom: 6px;
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ================================================
   PRODUCTS SECTION
   ================================================ */
.products-section {
    background: var(--white);
}

.product-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(7, 91, 58, 0.05);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--deep-forest);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card-body {
    padding: 22px;
}
.product-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.product-card-body p {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}
.product-card-link {
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--agri-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.product-card-link:hover {
    color: var(--deep-forest);
    gap: 10px;
}

/* Product Swiper */
.products-swiper .swiper-pagination-bullet {
    background: var(--agri-green);
}
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
    color: var(--deep-forest);
    background: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.products-swiper .swiper-button-next::after,
.products-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 800;
}
.products-swiper .swiper-button-next:hover,
.products-swiper .swiper-button-prev:hover {
    background: var(--deep-forest);
    color: var(--white);
}

/* ================================================
   FODDER SYSTEM SECTION
   ================================================ */
.fodder-system-section {
    background: linear-gradient(160deg, var(--deep-forest) 0%, #0d6b43 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.fodder-system-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -15%;
    right: -10%;
}

.fodder-system-section .section-title {
    color: var(--white);
}

.capacity-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}
.capacity-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}
.capacity-btn:hover,
.capacity-btn.active {
    background: var(--white);
    color: var(--deep-forest);
    border-color: var(--white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.spec-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}
.spec-item:hover {
    background: rgba(255, 255, 255, 0.12);
}
.spec-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    font-weight: 500;
}
.spec-value {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.fodder-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.fodder-image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .fodder-image-wrapper img {
        height: 280px;
    }
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================
   FODDER TRAY SECTION
   ================================================ */
.fodder-tray-section {
    background: var(--off-white);
}

.tray-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px;
    height: 100%;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.tray-card:hover {
    border-color: var(--warm-orange);
    box-shadow: 0 8px 36px rgba(242, 140, 40, 0.12);
}

.tray-card-badge {
    background: var(--warm-orange);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.tray-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.tray-card .tray-subtitle {
    font-family: "Poppins", sans-serif;
    color: var(--warm-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.tray-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tray-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.tray-specs li:last-child {
    border-bottom: none;
}
.tray-specs li i {
    color: var(--warm-orange);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-section {
    background: var(--white);
}

.step-card {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-green);
    line-height: 1;
    margin-bottom: 12px;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--light-green);
    color: var(--deep-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.step-card:hover .step-icon {
    background: var(--deep-forest);
    color: var(--white);
    transform: scale(1.08);
}

.step-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* connector line */
.step-connector {
    position: absolute;
    top: 88px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, var(--light-green), var(--agri-green));
}
@media (max-width: 768px) {
    .step-connector {
        display: none;
    }
}

/* ================================================
   CROP SLIDER
   ================================================ */
.crop-section {
    background: var(--off-white);
}

.crop-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 240px;
}
.crop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.crop-card:hover img {
    transform: scale(1.08);
}

.crop-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 91, 58, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.crop-card-overlay h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.crop-swiper .swiper-pagination-bullet-active {
    background: var(--agri-green);
}

/* ================================================
   APPLICATIONS
   ================================================ */
.applications-section {
    background: var(--white);
}

.app-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    background: var(--off-white);
    border: 1px solid rgba(7, 91, 58, 0.05);
    transition: var(--transition);
    height: 100%;
}
.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.app-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--light-green);
    color: var(--deep-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 14px;
    transition: var(--transition);
}
.app-card:hover .app-card-icon {
    background: var(--deep-forest);
    color: var(--white);
}

.app-card h5 {
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0;
}

/* ================================================
   ABOUT PREVIEW
   ================================================ */
.about-section {
    background: var(--off-white);
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.about-image-wrapper .about-year-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--deep-forest);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-family: "Poppins", sans-serif;
}
.about-year-badge .year-big {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.about-year-badge .year-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .about-image-wrapper img {
        height: 300px;
    }
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    height: 220px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 91, 58, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
}

/* first item large */
.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 456px;
}
@media (max-width: 576px) {
    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
        height: 220px;
    }
}

/* ================================================
   CONTACT / ENQUIRY
   ================================================ */
.contact-section {
    background: var(--off-white);
}

.contact-info-card {
    background: var(--deep-forest);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px;
    height: 100%;
}
.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}
.contact-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-text {
    font-size: 0.92rem;
    line-height: 1.6;
}
.contact-item-text a {
    color: rgba(255, 255, 255, 0.85);
}
.contact-item-text a:hover {
    color: var(--white);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}
.contact-social a:hover {
    background: var(--white);
    color: var(--deep-forest);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.form-control-custom {
    background: var(--off-white);
    border: 1px solid rgba(7, 91, 58, 0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.92rem;
    font-family: "Inter", sans-serif;
    transition: var(--transition);
    width: 100%;
}
.form-control-custom:focus {
    outline: none;
    border-color: var(--agri-green);
    box-shadow: 0 0 0 3px rgba(19, 138, 75, 0.08);
    background: var(--white);
}

.form-control-custom.is-invalid {
    border-color: #dc3545;
}
.invalid-feedback {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 4px;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--deep-forest), #0a7e50);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.cta-section::before {
    width: 400px;
    height: 400px;
    top: -20%;
    left: -5%;
}
.cta-section::after {
    width: 300px;
    height: 300px;
    bottom: -15%;
    right: -3%;
}

.cta-section .section-title {
    color: var(--white);
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* leaf decoration */
.cta-leaf {
    position: absolute;
    color: rgba(255, 255, 255, 0.06);
    font-size: 100px;
}
.cta-leaf-1 {
    top: 10%;
    left: 8%;
    transform: rotate(-20deg);
}
.cta-leaf-2 {
    bottom: 15%;
    right: 6%;
    transform: rotate(30deg);
}

/* ================================================
   FOOTER
   ================================================ */
.main-footer {
    background: var(--dark-charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 70px;
}

.footer-brand {
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    border-radius: 20px;
}
.footer-brand img {
    padding: 10px;
    height: 60px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--agri-green);
    color: var(--white);
}

.footer-heading {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}
.footer-contact-item i {
    color: var(--agri-green);
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}
.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.82rem;
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--deep-forest);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--agri-green);
    transform: translateY(-4px);
}

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulseWa 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}
@keyframes pulseWa {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ================================================
   LOADER (optional preload)
   ================================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.page-loader span{
    color: var(--warm-orange);
}
.page-loader p{
     position: fixed;
    /* inset: 0; */
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 20px;
    color: var(--deep-forest);
    font-weight: 700;
    transition: opacity 0.5s, visibility 0.5s;

}
.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--light-green);
    border-top-color: var(--deep-forest);
    border-radius: 50%;
    margin-top: -60px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   MISC UTILITIES
   ================================================ */
.text-green {
    color: var(--agri-green);
}
.text-deep {
    color: var(--deep-forest);
}
.bg-light-green {
    background: var(--light-green);
}

/* Selection */
::selection {
    background: var(--agri-green);
    color: var(--white);
}

/* ================================================
   ABOUT PAGE STYLES
   ================================================ */

/* ---- Page Hero (Inner Pages) ---- */
.page-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 60px;
}

.about-hero {
    background-image: url("https://images.pexels.com/photos/4199762/pexels-photo-4199762.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200");
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 143, 87, 0.877) 0%, rgba(4, 145, 70, 0.452) 100%);
}

.page-hero .breadcrumb {
    background: none;
    margin-bottom: 16px;
}
.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.page-hero .breadcrumb-item a:hover {
    color: var(--white);
}
.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.page-hero-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 16px;
}

.page-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 320px;
        padding-top: 90px;
        padding-bottom: 40px;
    }
}

/* ---- About Intro Section ---- */
.about-intro-section {
    background: var(--white);
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

.about-intro-image-deco {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--light-green);
    border-radius: var(--radius-lg);
    top: 20px;
    left: -20px;
    z-index: 1;
}

.about-intro-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--deep-forest);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 3;
}
.about-intro-badge .badge-year {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}
.about-intro-badge .badge-number {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-green);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--deep-forest);
}
.about-highlight-item i {
    color: var(--agri-green);
}

@media (max-width: 992px) {
    .about-intro-image img {
        height: 360px;
    }
    .about-intro-image-deco {
        display: none;
    }
}

/* ---- Journey / Timeline Section ---- */
.journey-section {
    background: var(--off-white);
}

.journey-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--agri-green), var(--light-green));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 36px;
    padding-left: 30px;
}
.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3px solid var(--agri-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--agri-green);
    z-index: 2;
}

.timeline-item.timeline-start .timeline-marker,
.timeline-item.timeline-present .timeline-marker {
    width: auto;
    height: auto;
    padding: 6px 14px;
    border-radius: 50px;
    background: var(--deep-forest);
    border-color: var(--deep-forest);
}
.timeline-marker .timeline-year {
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--agri-green);
}
.timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.timeline-content p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* ---- Specialize Section ---- */
.specialize-section {
    background: var(--light-green);
}

.specialize-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.specialize-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.specialize-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-green);
    line-height: 1;
}

.specialize-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--light-green);
    color: var(--deep-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
    transition: var(--transition);
}
.specialize-card:hover .specialize-icon {
    background: var(--deep-forest);
    color: var(--white);
}

.specialize-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.specialize-card p {
    font-size: 0.88rem;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* ---- Product Ecosystem Section ---- */
.product-ecosystem-section {
    background: var(--white);
}

.ecosystem-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(7, 91, 58, 0.05);
}
.ecosystem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.ecosystem-card:hover .ecosystem-image img {
    transform: scale(1.03);
}

.ecosystem-card.ecosystem-primary {
    border: 2px solid var(--deep-forest);
}
.ecosystem-card.ecosystem-secondary {
    border: 2px solid var(--agri-green);
}

.ecosystem-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--deep-forest);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}
.ecosystem-badge-secondary {
    background: var(--agri-green);
}

.ecosystem-image {
    height: 200px;
    overflow: hidden;
}
.ecosystem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ecosystem-body {
    padding: 22px;
}
.ecosystem-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.ecosystem-body p {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Horizontal ecosystem card for accessories */
.ecosystem-horizontal {
    display: flex;
    flex-direction: row;
}
.ecosystem-horizontal .ecosystem-image {
    width: 180px;
    height: auto;
    min-height: 180px;
    flex-shrink: 0;
}
.ecosystem-horizontal .ecosystem-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 576px) {
    .ecosystem-horizontal {
        flex-direction: column;
    }
    .ecosystem-horizontal .ecosystem-image {
        width: 100%;
        height: 160px;
    }
}

.btn-sm {
    padding: 10px 20px !important;
    font-size: 0.8rem !important;
}

/* ---- Approach Section ---- */
.approach-section {
    background: var(--off-white);
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.approach-item:hover {
    border-left-color: var(--agri-green);
    box-shadow: var(--shadow-sm);
}

.approach-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--light-green);
    color: var(--deep-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.approach-item:hover .approach-icon {
    background: var(--deep-forest);
    color: var(--white);
}

.approach-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.approach-content p {
    font-size: 0.88rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ---- Immersive Image Section ---- */
.immersive-section {
    background: var(--white);
    padding-top: 0;
}

.immersive-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.immersive-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.immersive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 91, 58, 0.3), rgba(19, 138, 75, 0.2));
}

.immersive-cards {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.immersive-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
}
.immersive-card i {
    font-size: 1.2rem;
    color: var(--deep-forest);
}
.immersive-card span {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-charcoal);
}

.immersive-card.card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}
.immersive-card.card-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}
.immersive-card.card-3 {
    top: 20%;
    right: 12%;
    animation-delay: 2s;
}
.immersive-card.card-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

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

@media (max-width: 992px) {
    .immersive-wrapper {
        height: 350px;
    }
    .immersive-cards {
        display: none;
    }
}

.immersive-card-mobile {
    background: var(--light-green);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}
.immersive-card-mobile i {
    font-size: 1.5rem;
    color: var(--deep-forest);
    display: block;
    margin-bottom: 8px;
}
.immersive-card-mobile span {
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-charcoal);
}

/* ---- Why Explore Section ---- */
.why-explore-section {
    background: var(--off-white);
}

.why-explore-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(7, 91, 58, 0.05);
}
.why-explore-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--agri-green);
}

.why-explore-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--light-green);
    color: var(--deep-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: var(--transition);
}
.why-explore-card:hover .why-explore-icon {
    background: var(--deep-forest);
    color: var(--white);
}

.why-explore-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-explore-card p {
    font-size: 0.88rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ---- Products Glance Swiper ---- */
.products-glance-section {
    background: var(--white);
}

.glance-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.glance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.glance-image {
    height: 200px;
    overflow: hidden;
}
.glance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.glance-card:hover .glance-image img {
    transform: scale(1.05);
}

.glance-body {
    padding: 20px;
    text-align: center;
}
.glance-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.products-glance-swiper .swiper-pagination-bullet {
    background: var(--agri-green);
}
.products-glance-swiper .swiper-button-next,
.products-glance-swiper .swiper-button-prev {
    color: var(--deep-forest);
    background: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.products-glance-swiper .swiper-button-next::after,
.products-glance-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 800;
}
.products-glance-swiper .swiper-button-next:hover,
.products-glance-swiper .swiper-button-prev:hover {
    background: var(--deep-forest);
    color: var(--white);
}

/* ---- Company Info Section ---- */
.company-info-section {
    background: var(--off-white);
}

.company-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.company-info-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.company-info-brand .brand-icon {
    width: 48px;
    height: 48px;
    background: var(--agri-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}
.company-info-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.info-item {
    text-align: center;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    height: 100%;
}
.info-icon {
    font-size: 1.5rem;
    color: var(--agri-green);
    margin-bottom: 10px;
}
.info-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 6px;
}
.info-value {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-charcoal);
}
.info-value a {
    color: var(--dark-charcoal);
}
.info-value a:hover {
    color: var(--agri-green);
}

@media (max-width: 768px) {
    .company-info-card {
        padding: 28px;
    }
}

/* ---- Location Section ---- */
.location-section {
    background: var(--white);
}

.location-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

.location-map-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--light-green) 0%, #d5ecd8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    padding: 30px;
}
.map-placeholder-content i {
    font-size: 3rem;
    color: var(--deep-forest);
    margin-bottom: 16px;
}
.map-placeholder-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.map-placeholder-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

/* ---- About CTA ---- */
.about-cta {
    background: linear-gradient(135deg, var(--deep-forest), #0a7e50);
}
