* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --green: #2e7d32;
    --green-dark: #1b5e20;
    --green-light: #4caf50;
    --cream: #f9faf5;
    --dark: #1a2e1a;
    --brown: #5d4037;
    --gold: #f9a825;
    --light-green: #e8f5e9;
    --light-cream: #f5f5dc;
    --earthy: #8d6e63;
}
html {
    scroll-behavior: smooth;
    font-size: 17px;
}
body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
    font-family: "Poppins", sans-serif;
    color: var(--green-dark);
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP STRIP */
.top-strip {
    background: linear-gradient(110deg, #1b5e20 0%, #2e7d32 55%, #388e3c 100%);
    color: #fff;
    font-size: 0.82rem;
    position: relative;
    overflow: hidden;
}
.top-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M20 6 C16 12,12 16,6 20 C12 24,16 28,20 34 C24 28,28 24,34 20 C28 16,24 12,20 6 Z' fill='none' stroke='%23ffffff' stroke-width='.6' opacity='.1'/></svg>");
    opacity: 0.5;
    pointer-events: none;
}
.top-strip-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.ts-info {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.ts-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    transition: 0.3s;
}
.ts-item:hover {
    transform: translateY(-1px);
}
.ts-item:hover b {
    color: var(--gold);
}
.ts-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}
.ts-item span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.ts-item small {
    font-size: 0.65rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.ts-item b {
    font-size: 0.84rem;
    font-weight: 600;
    transition: 0.3s;
}
.ts-socials {
    display: flex;
    gap: 8px;
}
.ts-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    transition: 0.3s;
}
.ts-socials a:hover {
    background: #fff;
    color: var(--green);
    border-color: #fff;
    transform: translateY(-2px) rotate(8deg);
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 24px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 24px;
}
.nav-logo img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    transition: 0.3s;
    border-radius: 50%;
    padding: 2px;
}
.nav-logo:hover img {
    transform: scale(1.04);
}
.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    transition: 0.3s;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green);
}
.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}
.nav-enquire {
    background: var(--green);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 0.5px;
    font-size: 14px;
    white-space: nowrap;
}
.nav-enquire:hover {
    background: var(--green-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}
.cta-btn {
    background: var(--green);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    font-size: 14px;
}
.cta-btn:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}
.cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    font-size: 14px;
}
.cta-outline:hover {
    background: #fff;
    color: var(--green);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: #f5f5f0;
    padding: 0;
}
.slides {
    position: relative;
    width: 100%;
}
.slide {
    display: none;
    width: 100%;
    position: relative;
}
.slide.active {
    display: block;
    animation: fade 0.9s ease;
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    z-index: 3;
}
.hero-overlay h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    animation: fadeUp 0.8s ease both;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
    animation: fadeUp 0.8s 0.15s ease both;
}
.hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s 0.45s ease both;
}
.hero-cta {
    padding: 12px 28px;
    font-size: 15px;
}
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--green-dark);
    z-index: 5;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.slide-nav:hover {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.3);
}
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: var(--green);
    width: 30px;
    border-radius: 6px;
}

/* TRUST BAR */
.trust {
    background: linear-gradient(135deg, var(--green-dark), #2e7d32);
    color: #fff;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}
.trust::before,
.trust::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.trust::before {
    left: 0;
    background: linear-gradient(90deg, var(--green-dark), transparent);
}
.trust::after {
    right: 0;
    background: linear-gradient(-90deg, #2e7d32, transparent);
}
.trust-track {
    display: flex;
    width: max-content;
    animation: trust-scroll 30s linear infinite;
}
.trust:hover .trust-track {
    animation-play-state: paused;
}
.trust-wrap {
    display: flex;
    gap: 50px;
    font-size: 16px;
    font-weight: 500;
    padding-right: 50px;
    flex-shrink: 0;
}
.trust-wrap span {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.trust-wrap span i {
    color: rgba(255, 255, 255, 0.7);
}
@keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* SECTIONS */
section {
    padding: 70px 0;
}
.section-head {
    text-align: center;
    margin-bottom: 40px;
}
.section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 10px;
    color: var(--green-dark);
}
.section-head .sub {
    color: var(--earthy);
    font-style: italic;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-head .line {
    width: 80px;
    height: 3px;
    background: var(--green);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ABOUT */
.about {
    background: linear-gradient(135deg, #fff 0%, #f4faf4 50%, #edf7ed 100%);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.07), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.about::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.eyebrow {
    display: inline-block;
    color: var(--green);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    background: var(--light-green);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(46, 125, 50, 0.15);
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}
.about-media {
    position: relative;
}
.about-media .ams-1 {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 5px solid #fff;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.about-media:hover .ams-1 {
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(46, 125, 50, 0.18);
}
.about-media::before {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--green);
    border-radius: 24px 0 0 0;
    border-right: none;
    border-bottom: none;
    opacity: 0.5;
    z-index: 1;
}
.about-media::after {
    content: "";
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--green);
    border-radius: 0 0 24px 0;
    border-left: none;
    border-top: none;
    opacity: 0.5;
    z-index: 1;
}
.ams-years {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.45);
    text-align: center;
    z-index: 3;
    border: 4px solid #fff;
    animation: badgePulse 3s ease-in-out infinite;
}
.ams-years b {
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}
.ams-years span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    padding: 0 8px;
    opacity: 0.9;
}
.about-main h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 22px;
}
.about-main h2 .hl {
    color: var(--green);
    position: relative;
    display: inline-block;
}
.about-main h2 .hl::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 10px;
    background: rgba(76, 175, 80, 0.2);
    z-index: -1;
    border-radius: 4px;
}
.about-main p {
    color: #555;
    line-height: 1.85;
    margin: 0 0 14px;
    font-size: 15px;
}
.about-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
}
.about-points li {
    padding: 10px 16px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(46, 125, 50, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: 0.35s ease;
}
.about-points li:hover {
    transform: translateX(6px);
    border-color: var(--green);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.1);
}
.about-points .tick {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
    transition: 0.4s;
}
.about-points li:hover .tick {
    transform: scale(1.15) rotate(360deg);
    transition: 0.5s;
}
.about-cta { display: inline-block; transition: all 0.3s ease; }
.about-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.25);
}

/* About animations */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 12px 30px rgba(46, 125, 50, 0.45);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 16px 36px rgba(46, 125, 50, 0.6);
    }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: none; }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: none; }
}
.about.visible .about-media {
    animation: slideInLeft 0.9s ease both;
}
.about.visible .about-main > * {
    animation: slideInRight 0.8s ease both;
}
.about.visible .about-main .eyebrow { animation-delay: 0.1s; }
.about.visible .about-main h2 { animation-delay: 0.2s; }
.about.visible .about-main p:nth-of-type(1) { animation-delay: 0.3s; }
.about.visible .about-main p:nth-of-type(2) { animation-delay: 0.4s; }
.about.visible .about-main .about-points { animation-delay: 0.5s; }
.about.visible .about-main .about-cta { animation-delay: 0.65s; }
.about.visible .ams-years {
    animation: badgePulse 3s ease-in-out 0.8s infinite;
}
.about-points li {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.5s ease;
}
.about.visible .about-points li { opacity: 1; transform: none; }
.about.visible .about-points li:nth-child(1) { transition-delay: 0.7s; }
.about.visible .about-points li:nth-child(2) { transition-delay: 0.85s; }
.about.visible .about-points li:nth-child(3) { transition-delay: 1s; }

/* EXPORT SERVICES */
.export {
    background: var(--light-green);
}
.export-enquiry-no {
    margin: 16px auto 0;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--earthy);
}
.export-enquiry-no a {
    color: var(--green);
    text-decoration: none;
}
.export-enquiry-no a:hover {
    text-decoration: underline;
}
.export-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.export-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(46, 125, 50, 0.1);
    display: flex;
    flex-direction: column;
}
.export-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.18);
    border-color: var(--green);
}
.export-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.export-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}
.export-card:hover .export-img img {
    transform: scale(1.08);
}
.export-content {
    padding: 24px 28px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    align-items: center;
}
.export-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 8px 18px rgba(46, 125, 50, 0.3);
    margin: -52px 0 16px;
    border: 4px solid #fff;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}
.export-card:hover .export-icon {
    transform: rotate(-8deg) scale(1.1);
}
.export-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--green-dark);
}
.export-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}
.export-content .cta-btn {
    font-size: 14px;
    padding: 8px 24px;
    align-self: center;
}
@keyframes cardRise {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: none; }
}
.export-card { opacity: 0; }
.export.visible .export-card { animation: cardRise 0.7s ease both; }
.export.visible .export-card:nth-child(1) { animation-delay: 0.1s; }
.export.visible .export-card:nth-child(2) { animation-delay: 0.25s; }
.export.visible .export-card:nth-child(3) { animation-delay: 0.4s; }

/* PRODUCTS */
.products {
    background: var(--cream);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.p-card {
    background: #fff;
    border-radius: 16px;
    padding: 0 0 24px;
    text-align: left;
    transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.08);
}
.p-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f0f4e8;
}
.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}
.p-card:hover .p-img img {
    transform: scale(1.08);
}
.p-card > h3,
.p-card > p {
    margin-left: 20px;
    margin-right: 20px;
}
.p-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    opacity: 0.08;
    transition: 0.5s;
}
.p-card:hover::before {
    transform: scale(2.5);
    opacity: 0.05;
}
.p-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
    border-color: var(--green);
}
.p-icon {
    width: 50px;
    height: 50px;
    margin: -25px 0 12px 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 8px 18px rgba(46, 125, 50, 0.3);
    position: relative;
    z-index: 2;
    transition: 0.4s;
    border: 3px solid #fff;
}
.p-card:hover .p-icon {
    transform: rotate(-8deg) scale(1.08);
}
.p-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--green-dark);
    position: relative;
    z-index: 1;
    line-height: 1.3;
}
.p-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.p-card { opacity: 0; }
.products.visible .p-card { animation: cardRise 0.7s ease both; }
.products.visible .p-card:nth-child(1) { animation-delay: 0.05s; }
.products.visible .p-card:nth-child(2) { animation-delay: 0.1s; }
.products.visible .p-card:nth-child(3) { animation-delay: 0.15s; }
.products.visible .p-card:nth-child(4) { animation-delay: 0.2s; }
.products.visible .p-card:nth-child(5) { animation-delay: 0.25s; }
.products.visible .p-card:nth-child(6) { animation-delay: 0.3s; }
.products.visible .p-card:nth-child(7) { animation-delay: 0.35s; }
.products.visible .p-card:nth-child(8) { animation-delay: 0.4s; }
.products.visible .p-card:nth-child(9) { animation-delay: 0.45s; }
.products.visible .p-card:nth-child(10) { animation-delay: 0.5s; }
.products.visible .p-card:nth-child(11) { animation-delay: 0.55s; }
.products.visible .p-card:nth-child(12) { animation-delay: 0.6s; }

/* KRUSHI CLINIC */
.krushi {
    background: linear-gradient(160deg, var(--green-dark) 0%, #2e7d32 40%, #388e3c 100%);
    position: relative;
    overflow: hidden;
}
.krushi::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.krushi::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.krushi .section-head h2 {
    color: #fff;
}
.krushi .section-head .sub {
    color: rgba(255, 255, 255, 0.75);
}
.krushi .section-head .line {
    background: rgba(255, 255, 255, 0.4);
}
.krushi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.krushi-card {
    width: calc(33.333% - 16px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.krushi-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.krushi-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}
.krushi-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
    position: relative;
    z-index: 1;
}
.krushi-card:hover .krushi-icon {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.krushi-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}
.krushi-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}
.krushi-card .cta-btn {
    font-size: 13px;
    padding: 8px 22px;
    background: #fff;
    color: var(--green-dark);
    font-weight: 700;
}
.krushi-card .cta-btn:hover {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.3);
}
.krushi-card { opacity: 0; }
.krushi.visible .krushi-card { animation: cardRise 0.7s ease both; }
.krushi.visible .krushi-card:nth-child(1) { animation-delay: 0.1s; }
.krushi.visible .krushi-card:nth-child(2) { animation-delay: 0.2s; }
.krushi.visible .krushi-card:nth-child(3) { animation-delay: 0.3s; }
.krushi.visible .krushi-card:nth-child(4) { animation-delay: 0.4s; }
.krushi.visible .krushi-card:nth-child(5) { animation-delay: 0.5s; }

/* WHY CHOOSE US */
.why {
    background: var(--light-green);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--green);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}
.why-card .why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    transition: 0.4s;
}
.why-card:hover .why-icon {
    transform: rotate(-10deg) scale(1.1);
}
.why-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--green-dark);
}
.why-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
@keyframes whySlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
.why-card { opacity: 0; }
.why.visible .why-card { animation: whySlide 0.7s ease both; }
.why.visible .why-card:nth-child(1) { animation-delay: 0.1s; }
.why.visible .why-card:nth-child(2) { animation-delay: 0.2s; }
.why.visible .why-card:nth-child(3) { animation-delay: 0.3s; }
.why.visible .why-card:nth-child(4) { animation-delay: 0.4s; }
.why.visible .why-card:nth-child(5) { animation-delay: 0.5s; }
.why.visible .why-card:nth-child(6) { animation-delay: 0.6s; }
.why.visible .why-card:nth-child(7) { animation-delay: 0.7s; }
.why.visible .why-card:nth-child(8) { animation-delay: 0.8s; }

/* PROCESS */
.process {
    background: linear-gradient(135deg, #f4faf4 0%, #fff 50%, #f0f7f0 100%);
    position: relative;
    overflow: hidden;
}
.steps {
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 0;
    gap: 0;
}
.step {
    flex: 1;
    background: transparent;
    padding: 0 16px;
    text-align: center;
    position: relative;
    transition: 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-ico {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.35);
    transition: 0.4s;
    border: 4px solid #fff;
    z-index: 2;
    margin-bottom: 20px;
}
.step:hover .step-ico {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 14px 30px rgba(46, 125, 50, 0.45);
}
/* Connector line between icons */
.step::before {
    content: "";
    position: absolute;
    top: 36px;
    left: -50%;
    right: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--green));
    z-index: 1;
}
.step:first-child::before {
    display: none;
}
.step::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--green);
    z-index: 3;
    display: none;
}
.step-num {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--green);
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.step h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--green-dark);
    line-height: 1.3;
}
.step p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 200px;
}
.step:hover h4 {
    color: var(--green);
}
@keyframes stepPop {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
.process.visible .step { animation: stepPop 0.7s ease both; }
.process.visible .step:nth-child(1) { animation-delay: 0.1s; }
.process.visible .step:nth-child(2) { animation-delay: 0.25s; }
.process.visible .step:nth-child(3) { animation-delay: 0.4s; }
.process.visible .step:nth-child(4) { animation-delay: 0.55s; }
.process.visible .step:nth-child(5) { animation-delay: 0.7s; }

/* GALLERY */
.gallery {
    background: var(--cream);
}
.g-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.g-item {
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.4s;
    background: var(--green-dark);
}
.g-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}
.g-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}
.g-item span {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}
.g-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.g-item:hover img {
    transform: scale(1.12);
}

/* CONTACT */
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate(40px, -30px) scale(1.2); opacity: 0.85; }
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}
@keyframes ripple {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shine {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(250%) skewX(-20deg); }
}
@keyframes spinSlow {
    to { transform: rotate(360deg); }
}
@keyframes tiltIn {
    from { opacity: 0; transform: perspective(800px) rotateY(-15deg) translateX(-40px); }
    to { opacity: 1; transform: perspective(800px) rotateY(0) translateX(0); }
}

.contact {
    background: linear-gradient(135deg, #fff 0%, #f0f7f0 60%, #e8f5e9 100%);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}
.contact .container { position: relative; z-index: 2; }
.contact h2 { color: var(--green-dark); }
.contact .section-head .sub { color: var(--earthy); }

.contact::before,
.contact::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}
.contact::before {
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15), transparent 70%);
    animation: floatOrb 10s ease-in-out infinite;
}
.contact::after {
    bottom: -100px; left: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.08), transparent 70%);
    animation: floatOrb 13s ease-in-out infinite reverse;
}

.c-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: fadeUp 0.8s ease-out both;
    gap: 0;
}

.c-info {
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 55%, #43a047 100%);
    color: #fff;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}
.c-info::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: conic-gradient(from 0deg, rgba(255,255,255,0.15), transparent 50%, rgba(255,255,255,0.15));
    border-radius: 50%;
    opacity: 0.25;
    animation: spinSlow 20s linear infinite;
}
.c-info::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    animation: drift 8s ease-in-out infinite;
}
.c-info > * { position: relative; z-index: 1; }
.c-info h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.4rem;
    animation: fadeUp 0.6s 0.1s ease-out both;
}
.c-info h3::before {
    content: "Let's Connect";
    display: block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.c-item {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    animation: tiltIn 0.6s ease-out both;
}
.c-info .c-item:nth-of-type(1) { animation-delay: 0.15s; }
.c-info .c-item:nth-of-type(2) { animation-delay: 0.25s; }
.c-info .c-item:nth-of-type(3) { animation-delay: 0.35s; }
.c-info .c-item:nth-of-type(4) { animation-delay: 0.45s; }
.c-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}
.c-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%) skewX(-20deg);
    pointer-events: none;
}
.c-item:hover::after { animation: shine 0.9s ease forwards; }

.c-ico {
    font-size: 1rem;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.c-ico::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ripple 2.2s ease-out infinite;
}
.c-item:nth-of-type(2) .c-ico::before { animation-delay: 0.5s; }
.c-item:nth-of-type(3) .c-ico::before { animation-delay: 1s; }
.c-item:nth-of-type(4) .c-ico::before { animation-delay: 1.5s; }

.c-item b {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}
.c-item span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.c-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    animation: fadeUp 0.6s 0.55s ease-out both;
}
.c-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}
.c-socials a:hover {
    background: #fff;
    color: var(--green);
    transform: translateY(-3px);
}

.c-form {
    background: #fff;
    padding: 32px 30px;
    color: var(--dark);
    position: relative;
    border: none;
    border-radius: 0;
    box-shadow: none;
    animation: none;
}
.c-form:hover { transform: none; box-shadow: none; }
.c-form::before {
    content: "";
    position: absolute;
    top: 32px; right: 32px;
    width: 60px; height: 60px;
    border: 2px dashed rgba(46, 125, 50, 0.2);
    border-radius: 50%;
    animation: spinSlow 14s linear infinite;
    pointer-events: none;
}
.c-form h3 {
    margin-bottom: 18px;
    color: var(--green-dark);
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
    animation: fadeUp 0.6s 0.2s ease-out both;
}
.c-form h3::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--green), transparent);
    border-radius: 2px;
}
.field {
    margin-bottom: 12px;
    position: relative;
    animation: fadeUp 0.5s ease-out both;
}
.c-form .field:nth-of-type(1) { animation-delay: 0.25s; }
.c-form .field:nth-of-type(2) { animation-delay: 0.3s; }
.c-form .field:nth-of-type(3) { animation-delay: 0.35s; }
.c-form .field:nth-of-type(4) { animation-delay: 0.4s; }
.c-form .field:nth-of-type(5) { animation-delay: 0.45s; }
.field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--green-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e8d8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fafdf7;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: var(--green-light);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
}
.field textarea {
    resize: vertical;
    min-height: 80px;
}
.submit-btn {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
    animation: fadeUp 0.6s 0.55s ease-out both;
    isolation: isolate;
}
.submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dark), #145214);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.submit-btn::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.submit-btn:hover {
    transform: translateY(-3px);
    letter-spacing: 2.5px;
    box-shadow: 0 18px 38px rgba(46, 125, 50, 0.4);
}
.submit-btn:hover::before { opacity: 1; }
.submit-btn:hover::after { left: 130%; }
.submit-btn:active { transform: translateY(-1px); }

.map-area {
    animation: fadeUp 0.8s 0.3s ease-out both;
}

/* FOOTER */
footer {
    background:
        radial-gradient(ellipse at top left, rgba(46, 125, 50, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(46, 125, 50, 0.06), transparent 50%),
        #0a1f0a;
    color: #c8d8c8;
    padding: 70px 0 18px;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: repeating-linear-gradient(135deg, rgba(76, 175, 80, 0.04) 0 14px, transparent 14px 28px);
    pointer-events: none;
}
footer::after {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 260px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    border-radius: 2px;
    animation: shine 3.5s linear infinite;
}
footer .container { position: relative; z-index: 1; }

.f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px dashed rgba(76, 175, 80, 0.2);
}
.f-col {
    animation: fadeUp 0.7s ease-out both;
}
.f-col:nth-child(1) { animation-delay: 0.05s; }
.f-col:nth-child(2) { animation-delay: 0.15s; }
.f-col:nth-child(3) { animation-delay: 0.25s; }
.f-col:nth-child(4) { animation-delay: 0.35s; }

.f-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
    padding-left: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.f-col h4::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 10px; height: 10px;
    background: var(--green);
    border-radius: 2px;
    rotate: 45deg;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
}

.f-col ul { list-style: none; }
.f-col li {
    margin-bottom: 9px;
    font-size: 15px;
    color: #a0b8a0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.f-col li:hover { transform: translateX(4px); color: #fff; }
.f-col a {
    color: #a0b8a0;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    position: relative;
    display: inline-block;
}
.f-col a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--green);
    transition: width 0.4s ease;
}
.f-col a:hover { color: var(--green-light); }
.f-col a:hover::after { width: 100%; }

.f-logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    margin-bottom: 14px;
    background: #fff;
    padding: 4px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.f-logo img:hover {
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.35);
}
.f-logo p {
    font-size: 14px;
    color: #8a9e8a;
    margin-top: 8px;
    line-height: 1.6;
}
.f-italic {
    color: var(--green-light);
    font-style: italic;
    font-family: "Poppins", sans-serif;
    margin-top: 6px !important;
    font-size: 0.9rem;
    position: relative;
    padding-left: 14px;
}
.f-italic::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 8px; height: 2px;
    background: var(--green);
    transform: translateY(-50%);
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.socials a {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid rgba(76, 175, 80, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--green-light);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.35s ease, transform 0.35s ease, border-color 0.35s ease, border-radius 0.4s ease;
}
.socials a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}
.socials a:hover {
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--green);
    border-radius: 50%;
}
.socials a:hover::before { transform: translateY(0); }

.copy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(76, 175, 80, 0.06);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 14px;
    color: #8a9e8a;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-align: center;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.modal-overlay.open { display: flex; }
.modal {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px 32px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.35s ease;
    border-top: 5px solid var(--green);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.modal::before {
    content: "";
    position: absolute;
    top: -5px; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--green-dark), var(--green));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    border-radius: 18px 18px 0 0;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.modal h3 {
    margin: 0 0 6px;
    font-family: "Playfair Display", serif;
    color: var(--green-dark);
    font-size: 1.5rem;
}
.modal-sub {
    color: var(--green);
    font-size: 0.9rem;
    margin: 0 0 20px;
    font-style: italic;
}
.modal .field { margin-bottom: 12px; }
.modal .field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modal .field input,
.modal .field select,
.modal .field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #d4e4d4;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #f7faf7;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.modal .field input:focus,
.modal .field select:focus,
.modal .field textarea:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}
.modal .submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    isolation: isolate;
    position: relative;
    overflow: hidden;
}
.modal .submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dark), #145214);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.modal .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(46, 125, 50, 0.4);
}
.modal .submit-btn:hover::before { opacity: 1; }
.modal-close {
    position: absolute;
    top: 10px; right: 14px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--green-dark);
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}
.modal-close:hover {
    color: var(--green);
    transform: rotate(90deg);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}

/* FLOATING CONTACT */
.float-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}
.fc-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    border: 3px solid #fff;
}
.fc-btn:hover {
    transform: scale(1.1);
}
.fc-wa {
    background: #25d366;
    animation: floatBtnPulse 2s ease-in-out infinite;
}
.fc-call {
    background: var(--green);
}
.fc-call svg {
    transform: rotate(10deg);
}
@keyframes floatBtnPulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6); }
}

/* Mobile call button: visible only on mobile */
.mobile-call-btn {
    display: none;
}

/* FADE IN */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
    .container { padding-left: 18px; padding-right: 18px; }
    .c-grid { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .export-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .krushi-card { width: calc(50% - 12px); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-wrap: wrap; }
    .step { flex: 0 0 33.333%; margin-bottom: 30px; }
    .step::before { display: none; }
    .f-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    html { font-size: 16px; }
    .top-strip { padding: 8px 0; }
    .top-strip-wrap { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .ts-item small { display: none; }
    .ts-item b { font-size: 0.78rem; }
    .ts-ico { font-size: 0.9rem; }
    .ts-socials {
        display: flex;
        gap: 6px;
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }
    .ts-socials a { width: 28px; height: 28px; font-size: 0.75rem; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.open { display: flex; }
    .nav-menu a::after { display: none !important; }
    .hamburger { display: flex; }
    .nav-wrap { gap: 10px; }
    .nav-logo { order: 1; margin-right: auto; }
    .nav-enquire {
        display: inline-flex;
        order: 2;
        padding: 7px 14px;
        font-size: 0.78rem;
    }
    .hamburger { order: 3; margin-left: 4px; }
    .nav-menu { order: 4; }
    .nav-logo img { height: 70px; width: 70px; }

    .slide img { height: auto; }
    .hero-overlay { padding: 30px 16px; }
    .hero-btns { gap: 12px; }
    .hero-cta { padding: 10px 20px; font-size: 14px; }

    section { padding: 50px 0; }
    .section-head { margin-bottom: 28px; }
    .section-head h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    .section-head .sub { font-size: 15px; }

    .about-layout { gap: 30px; }
    .about-media .ams-1 { aspect-ratio: 16 / 10; }
    .ams-years { width: 90px; height: 90px; bottom: -12px; right: -12px; }
    .ams-years b { font-size: 1.3rem; }
    .ams-years { width: 90px; height: 90px; bottom: 14px; right: 14px; }
    .ams-years b { font-size: 1.5rem; }

    .export-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .krushi-card { width: 100%; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .step { flex: 0 0 50%; }
    .g-grid { grid-template-columns: repeat(2, 1fr); }

    .c-info, .c-form { padding: 24px 20px; }
    .c-info h3, .c-form h3 { font-size: 18px; }
    .field textarea { min-height: 80px; }

    .f-grid { grid-template-columns: 1fr 1fr; }
    .copy { flex-direction: column; text-align: center; padding: 14px 16px; font-size: 0.8rem; }
    .socials { justify-content: flex-start; flex-wrap: wrap; }

    .modal { padding: 28px 22px; border-radius: 14px; }
    .modal h3 { font-size: 1.2rem; }

    .float-contact { bottom: 16px; right: 16px; gap: 12px; }
    .fc-btn { width: 52px; height: 52px; }
    .mobile-call-btn { display: flex; }
    footer { padding: 48px 0 16px; }

    .slide-nav { width: 36px; height: 36px; font-size: 1.2rem; }
    .process .step { padding: 0 12px; }
    .trust-wrap { gap: 30px; font-size: 0.85rem; padding-right: 30px; }
    .trust::before, .trust::after { width: 40px; }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .g-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .step { flex: 0 0 100%; }
    .step-ico { width: 60px; height: 60px; font-size: 1.3rem; }
    .f-grid { grid-template-columns: 1fr; gap: 28px; }
    .nav-logo img { height: 60px; width: 60px; }
    .section-head h2 { font-size: 1.4rem; }
    .slide img { height: auto; }
    .cta-btn { padding: 10px 22px; font-size: 0.9rem; }
    .about-media::before, .about-media::after { width: 80px; height: 80px; }
    .ams-years { width: 80px; height: 80px; bottom: -10px; right: -10px; }
    .ams-years b { font-size: 1.1rem; }
    .ams-years span { font-size: 0.55rem; }
    .trust-wrap { gap: 22px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .g-grid { grid-template-columns: 1fr; }
    .nav-wrap { padding: 10px 14px; }
    .nav-logo img { height: 54px; width: 54px; }
    .ts-info { gap: 6px; }
    .ts-item b { font-size: 0.72rem; }
    .slide img { height: auto; }
    .slide-nav { display: none; }
    .section-head h2 { font-size: 1.3rem; }
    .p-img { height: 160px; }
    .p-card { border-radius: 14px; }
    .p-card > h3, .p-card > p { margin-left: 16px; margin-right: 16px; }
    .c-info, .c-form { padding: 20px 16px; }
    .c-info h3, .c-form h3 { font-size: 16px; }
    .field label { font-size: 12px; }
    .submit-btn { font-size: 15px; padding: 11px 22px; }
    .c-item { padding: 8px 10px; gap: 10px; }
    .c-ico { min-width: 34px; height: 34px; font-size: 0.9rem; }
    .c-item b { font-size: 11px; }
    .c-item span { font-size: 13px; }
    .modal { padding: 22px 16px; }
    .modal-close { font-size: 1.5rem; top: 6px; right: 10px; }
    .ams-years { width: 74px; height: 74px; bottom: 8px; right: 8px; }
    .ams-years b { font-size: 1.2rem; }
    .ams-years span { font-size: 0.6rem; }
    .float-contact { bottom: 12px; right: 12px; }
    .fc-btn { width: 44px; height: 44px; }
    footer { padding: 36px 0 14px; }
    .f-col h4 { font-size: 14px; margin-bottom: 14px; }
    .f-col li { font-size: 13px; }
    .socials a { width: 38px; height: 38px; }
    .export-img { height: 180px; }
    .export-content { padding: 20px 18px 24px; }
    .krushi-card { padding: 28px 18px 24px; }
    .krushi-icon { width: 56px; height: 56px; font-size: 1.2rem; }
}

@media (max-width: 360px) {
    .section-head h2 { font-size: 1.15rem; }
    .about-main h2 { font-size: 1.3rem; }
    .p-img { height: 140px; }
    .cta-btn { padding: 9px 18px; }
    .slide img { height: auto; }
}
