﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
}


/* ================= HEADER ================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.navbar {
    min-height: 82px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
}

.brand-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 7px;
}

    .nav-link:hover {
        color: #e69b00 !important;
    }

.btn-buy {
    background: #e59a00;
    color: white;
    padding: 11px 24px;
    border-radius: 30px;
    font-weight: 600;
}

    .btn-buy:hover {
        background: #c98000;
        color: white;
    }


/* ================= HERO ================= */

.hero {
    min-height: 760px;
    padding-top: 150px;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(255,248,226,.98), rgba(255,255,255,.75) );
}

.company-badge {
    display: inline-block;
    background: #fff2c9;
    color: #b87900;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-top: 20px;
}

.hero h2 {
    font-size: 25px;
    color: #b57b00;
}

.accent-text {
    color: #d58b00;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-image img {
    max-height: 530px;
    width: 100%;
    object-fit: contain;
}

.btn-primary {
    background: #e39a00;
    border: none;
    padding: 13px 28px;
    border-radius: 30px;
}

    .btn-primary:hover {
        background: #bd7800;
    }


/* ================= SECTION ================= */

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

    .section-title h2 {
        font-size: 38px;
        font-weight: 800;
    }

    .section-title p {
        color: #777;
    }


/* ================= ABOUT ================= */

.about-section {
    padding: 100px 0;
}

.about-image {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.about-title {
    color: #c78300;
    font-weight: 700;
    font-size: 18px;
}

.about-heading {
    font-size: 42px;
    font-weight: 800;
}


/* ================= PRODUCTS ================= */

.products-section {
    background: #fff9ea;
    padding: 90px 0;
}

.product-card {
    background: #fff;
    border-radius: 22px;
    padding: 25px;
    height: 100%;
    text-align: center;
    box-shadow: 0 8px 35px rgba(0,0,0,.08);
    transition: .3s;
}

    .product-card:hover {
        transform: translateY(-8px);
    }

    .product-card img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .product-card h4 {
        font-weight: 700;
        margin-top: 15px;
    }

    .product-card p {
        color: #777;
    }


/* ================= PROCESS ================= */

.process-section {
    padding: 90px 0;
}

.process-card {
    text-align: center;
    padding: 30px;
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff2c9;
    color: #d38b00;
    border-radius: 50%;
    font-size: 35px;
}

.process-card h4 {
    margin-top: 20px;
    font-weight: 700;
}


/* ================= QUALITY ================= */

.quality-section {
    background: #fff9ea;
    padding: 90px 0;
}

.quality-box {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

    .quality-box i {
        font-size: 42px;
        color: #dc9200;
    }

    .quality-box h4 {
        margin-top: 20px;
        font-weight: 700;
    }


/* ================= CONTACT ================= */

.contact-section {
    padding: 100px 0;
}

.contact-box {
    background: #fff9ea;
    padding: 40px;
    border-radius: 25px;
}

.form-control {
    min-height: 52px;
    border-radius: 10px;
}

textarea.form-control {
    min-height: 140px;
}


/* ================= FOOTER ================= */

.footer {
    background: #29200e;
    color: #ddd;
    padding: 70px 0 20px;
}

.footer-logo {
    width: 90px;
    background: white;
    padding: 5px;
    border-radius: 10px;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    padding: 0;
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #f0a500;
        }

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f0a500;
        color: white;
        border-radius: 50%;
        text-decoration: none;
    }

.copyright {
    color: #aaa;
}


/* ================= MOBILE ================= */

@media(max-width: 991px) {

    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 70px;
    }

        .hero h1 {
            font-size: 38px;
        }

    .hero-image {
        margin-top: 40px;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
    }
}


/* ================================
   HERO SECTION
================================ */

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(255, 220, 70, .35), transparent 30%), linear-gradient(135deg, #fffdf3 0%, #fff8d9 45%, #e9f8ec 100%);
}


    /* Background Glow */

    .hero::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: rgba(255, 193, 7, .16);
        top: -250px;
        right: -150px;
        animation: rotateGlow 12s linear infinite;
    }


/* Decorative Shapes */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: rgba(17, 116, 55, .08);
    left: -70px;
    top: 80px;
    animation: floating 6s ease-in-out infinite;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: rgba(255, 193, 7, .13);
    right: 40%;
    bottom: 40px;
    animation: floating 5s ease-in-out infinite reverse;
}


/* ================================
   CONTENT
================================ */

.hero-content {
    position: relative;
    z-index: 5;
    animation: contentReveal 1s ease forwards;
}


.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(18,110,53,.15);
    border-radius: 50px;
    color: #176b38;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

    .company-badge i {
        color: #e8a900;
    }


/* Main Heading */

.hero h1 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 800;
    color: #163f27;
    letter-spacing: -1.5px;
}

    .hero h1 span {
        color: #bd201c;
    }


/* Brand Name */

.hero h2 {
    margin: 10px 0;
}

.accent-text {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient( 90deg, #c7201c, #ed9f00, #c7201c );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 4s linear infinite;
}

.hero h2 small {
    display: block;
    color: #26733e;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}


.hero-description {
    max-width: 530px;
    font-size: 18px;
    line-height: 1.7;
    color: #59635c;
    margin: 20px 0 28px;
}


/* ================================
   BUTTONS
================================ */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


.hero-btn {
    position: relative;
    padding: 14px 25px;
    border: none;
    border-radius: 50px;
    background: linear-gradient( 135deg, #c91f1f, #e58c00 );
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(201,31,31,.25);
    transition: all .35s ease;
    overflow: hidden;
}

    .hero-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100%;
        background: rgba(255,255,255,.25);
        transform: skewX(-25deg);
        transition: .6s;
    }

    .hero-btn:hover::before {
        left: 130%;
    }

    .hero-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(201,31,31,.35);
    }

    .hero-btn i {
        margin-left: 8px;
        transition: transform .3s;
    }

    .hero-btn:hover i {
        transform: translateX(5px);
    }


.contact-btn {
    color: #176b38 !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: .3s;
}

    .contact-btn:hover {
        transform: translateX(5px);
    }

    .contact-btn i {
        margin-right: 7px;
    }


/* ================================
   FEATURES
================================ */

.hero-features {
    display: flex;
    gap: 28px;
    margin-top: 38px;
    flex-wrap: wrap;
}

    .hero-features div {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #36543f;
        font-size: 14px;
        font-weight: 600;
    }

    .hero-features i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #fff;
        color: #198043;
        box-shadow: 0 5px 15px rgba(0,0,0,.08);
    }


/* ================================
   PRODUCT IMAGE
================================ */

.hero-image {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: imageReveal 1.2s ease forwards;
}


.product-image {
    position: relative;
    max-width: 100%;
    max-height: 590px;
    object-fit: contain;
    z-index: 3;
    filter: drop-shadow(0 25px 30px rgba(0,0,0,.18));
    animation: productFloat 4s ease-in-out infinite;
}


/* Glow behind bottle */

.image-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255,193,7,.35), rgba(255,255,255,0) );
    animation: glowPulse 4s ease-in-out infinite;
}


/* ================================
   FLOATING BADGES
================================ */

.floating-badge {
    position: absolute;
    z-index: 5;
    padding: 12px 18px;
    background: rgba(255,255,255,.85);
    border-radius: 15px;
    color: #176b38;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    backdrop-filter: blur(12px);
}

    .floating-badge i {
        margin-right: 6px;
        color: #e2a500;
    }

.badge-top {
    top: 80px;
    right: 10px;
    animation: floating 4s ease-in-out infinite;
}

.badge-bottom {
    bottom: 80px;
    left: 20px;
    animation: floating 4s ease-in-out infinite reverse;
}


/* ================================
   OIL DROPS
================================ */

.oil-drop {
    position: absolute;
    width: 22px;
    height: 30px;
    background: linear-gradient( 135deg, #ffd52a, #d68a00 );
    border-radius: 70% 30% 70% 30%;
    opacity: .35;
    transform: rotate(45deg);
    animation: dropFloat 7s ease-in-out infinite;
}

.drop-1 {
    left: 8%;
    top: 35%;
}

.drop-2 {
    right: 12%;
    top: 25%;
    animation-delay: 2s;
}

.drop-3 {
    right: 35%;
    bottom: 15%;
    animation-delay: 4s;
}


/* ================================
   WAVE
================================ */

.hero-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

    .hero-wave svg {
        width: 100%;
        height: 90px;
    }


/* ================================
   ANIMATIONS
================================ */

@keyframes productFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


@keyframes floating {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


@keyframes glowPulse {

    0%, 100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}


@keyframes badgePulse {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}


@keyframes gradientText {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}


@keyframes rotateGlow {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes contentReveal {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes imageReveal {

    from {
        opacity: 0;
        transform: translateX(50px) scale(.92);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


@keyframes dropFloat {

    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-40px) rotate(65deg);
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 991px) {

    .hero {
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .hero-content {
        text-align: center;
    }

    .company-badge {
        margin: auto;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        min-height: 480px;
        margin-top: 30px;
    }

    .product-image {
        max-height: 470px;
    }

    .badge-top {
        right: 5%;
    }

    .badge-bottom {
        left: 5%;
    }
}


@media (max-width: 576px) {

    .hero h1 {
        font-size: 34px;
    }

    .accent-text {
        font-size: 30px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-image {
        min-height: 390px;
    }

    .product-image {
        max-height: 390px;
    }

    .floating-badge {
        font-size: 11px;
        padding: 9px 12px;
    }

    .hero-features {
        gap: 12px;
    }
}

/* =====================================================
   ABOUT PAGE
===================================================== */

.about-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(255,193,7,.22), transparent 30%), linear-gradient(135deg, #fffdf3, #eef9e9);
    display: flex;
    align-items: center;
}


.about-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orb-one {
    width: 350px;
    height: 350px;
    background: rgba(22,115,55,.08);
    right: -150px;
    bottom: -100px;
    animation: aboutFloat 7s ease-in-out infinite;
}

.orb-two {
    width: 180px;
    height: 180px;
    background: rgba(245,180,0,.12);
    left: -70px;
    top: 80px;
    animation: aboutFloat 5s ease-in-out infinite reverse;
}


/* HERO CONTENT */

.about-hero-content {
    position: relative;
    z-index: 3;
    animation: aboutContent .9s ease forwards;
}


.about-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.8);
    color: #176b38;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
}


.about-hero h1 {
    margin-top: 25px;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(42px,5vw,68px);
    line-height: 1.2;
    font-weight: 800;
    color: #173e27;
}


    .about-hero h1 span {
        color: #c7201c;
    }


.about-hero-content p {
    max-width: 570px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #5d665f;
}


/* BUTTONS */

.about-hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}


.about-main-btn,
.about-outline-btn {
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}


.about-main-btn {
    color: #fff !important;
    background: linear-gradient( 135deg, #c8201d, #e39b00 );
    box-shadow: 0 12px 30px rgba(198,32,29,.25);
}


    .about-main-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 35px rgba(198,32,29,.32);
    }


    .about-main-btn i {
        margin-left: 8px;
    }


.about-outline-btn {
    border: 1px solid #176b38;
    color: #176b38 !important;
    background: rgba(255,255,255,.5);
}


    .about-outline-btn:hover {
        color: #fff !important;
        background: #176b38;
        transform: translateY(-4px);
    }


/* =====================================================
   HERO IMAGE
===================================================== */

.about-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: aboutImage 1s ease forwards;
}


.visual-circle {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255,193,7,.38), rgba(255,255,255,0) );
    animation: visualPulse 4s infinite;
}


.about-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
    animation: aboutProductFloat 5s ease-in-out infinite;
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255,255,255,.9);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,.13);
    backdrop-filter: blur(10px);
    color: #176b38;
}


    .floating-card i {
        font-size: 25px;
        color: #dfa600;
    }


    .floating-card strong,
    .floating-card small {
        display: block;
    }


    .floating-card strong {
        font-size: 14px;
    }


    .floating-card small {
        color: #777;
    }


.card-one {
    top: 70px;
    right: 0;
    animation: aboutFloat 4s infinite;
}


.card-two {
    bottom: 65px;
    left: 0;
    animation: aboutFloat 4s infinite reverse;
}


/* =====================================================
   STORY
===================================================== */

.about-story {
    padding: 100px 0;
    background: #fff;
}


.story-image-wrapper {
    position: relative;
    padding: 25px;
}


.story-bg-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #f2f8e9;
    left: 0;
    top: 30px;
}


.story-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}


.experience-card {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    padding: 18px 25px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.13);
    text-align: center;
    color: #176b38;
}


    .experience-card span {
        display: block;
    }


.experience-number {
    font-size: 22px;
    font-weight: 800;
    color: #c8201d;
}


.section-label {
    color: #bd201c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}


.story-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #163f27;
}


    .story-heading span {
        color: #c8201d;
    }


.story-text {
    color: #626a64;
    line-height: 1.8;
    font-size: 16px;
}


.story-points {
    margin-top: 25px;
}


    .story-points div {
        margin-bottom: 12px;
        color: #35523e;
        font-weight: 600;
    }


    .story-points i {
        color: #188043;
        margin-right: 8px;
    }


/* =====================================================
   PRODUCTS
===================================================== */

.about-products {
    padding: 100px 0;
    background: #f8fbf5;
}


.section-heading-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}


    .section-heading-center h2 {
        font-size: 44px;
        color: #173e27;
        font-weight: 800;
    }


        .section-heading-center h2 span {
            color: #c8201d;
        }


    .section-heading-center p {
        color: #707870;
    }


.oil-product-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border-radius: 25px;
    display: flex;
    gap: 25px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    transition: .4s;
}


    .oil-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }


.oil-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}


.soy-card .oil-icon {
    background: #188043;
}


.mustard-card .oil-icon {
    background: #c47a00;
}


.product-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #888;
}


.oil-product-card h3 {
    margin-top: 7px;
    color: #173e27;
    font-size: 25px;
    font-weight: 800;
}


.oil-product-card p {
    color: #69716b;
    line-height: 1.7;
}


.oil-product-card a {
    color: #bd201c;
    font-weight: 700;
    text-decoration: none;
}


    .oil-product-card a i {
        margin-left: 5px;
        transition: .3s;
    }


    .oil-product-card a:hover i {
        margin-left: 10px;
    }


/* =====================================================
   VALUES
===================================================== */

.values-section {
    padding: 100px 0;
    background: linear-gradient( 135deg, #143d25, #1e6638 );
}


.section-heading-center.light h2,
.section-heading-center.light p {
    color: #fff;
}


.value-card {
    height: 100%;
    padding: 35px 25px;
    text-align: center;
    border-radius: 22px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: .4s;
}


    .value-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.14);
    }


.value-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #188043;
    font-size: 30px;
}


.value-card h4 {
    font-size: 21px;
}


.value-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    font-size: 14px;
}


/* =====================================================
   PROCESS
===================================================== */

.about-process {
    padding: 100px 0;
    background: #fff;
}


.about-process-card {
    position: relative;
    padding: 35px 25px;
    text-align: center;
    border-radius: 22px;
    background: #f8faf6;
    border: 1px solid #e9eee8;
    transition: .4s;
}


    .about-process-card:hover {
        transform: translateY(-8px);
        border-color: #e1b02c;
    }


    .about-process-card > i {
        display: flex;
        width: 65px;
        height: 65px;
        margin: 10px auto 18px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #eaf5e9;
        color: #188043;
        font-size: 28px;
    }


.process-number {
    color: #c8201d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}


.about-process-card h4 {
    color: #173e27;
    font-weight: 800;
}


.about-process-card p {
    color: #737a75;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   CTA
===================================================== */

.about-cta {
    padding: 70px 0;
    background: #f8fbf5;
}


.cta-box {
    position: relative;
    overflow: hidden;
    padding: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
    background: linear-gradient( 120deg, #176b38, #23924b );
    box-shadow: 0 20px 45px rgba(23,107,56,.2);
}


    .cta-box::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        right: -80px;
        top: -120px;
        background: rgba(255,255,255,.08);
    }


    .cta-box span {
        font-size: 12px;
        letter-spacing: 3px;
        font-weight: 800;
    }


    .cta-box h2 {
        margin: 10px 0;
        font-size: 38px;
        font-weight: 700;
    }


        .cta-box h2 strong {
            color: #ffd429;
        }


    .cta-box p {
        margin: 0;
        color: rgba(255,255,255,.8);
    }


.cta-button {
    position: relative;
    z-index: 2;
    padding: 14px 25px;
    border-radius: 50px;
    background: #fff;
    color: #176b38 !important;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: .35s;
}


    .cta-button:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0,0,0,.15);
    }


    .cta-button i {
        margin-left: 8px;
    }


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes aboutFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


@keyframes aboutProductFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes visualPulse {

    0%,100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}


@keyframes aboutContent {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes aboutImage {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .about-hero {
        padding: 80px 0;
    }

    .about-hero-content {
        text-align: center;
    }

    .about-badge {
        margin: auto;
    }

    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-buttons {
        justify-content: center;
    }

    .about-visual {
        min-height: 450px;
        margin-top: 40px;
    }

    .story-heading {
        font-size: 40px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }
}


@media (max-width: 576px) {

    .about-hero h1 {
        font-size: 35px;
    }

    .about-main-image {
        border-radius: 18px;
    }

    .visual-circle {
        width: 300px;
        height: 300px;
    }

    .floating-card {
        padding: 9px 12px;
        font-size: 11px;
    }

    .card-one {
        right: 0;
        top: 30px;
    }

    .card-two {
        left: 0;
        bottom: 30px;
    }

    .section-heading-center h2 {
        font-size: 34px;
    }

    .story-heading {
        font-size: 34px;
    }

    .cta-box {
        padding: 35px 20px;
    }

        .cta-box h2 {
            font-size: 29px;
        }
}
/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient( circle at 80% 30%, rgba(255,193,7,.25), transparent 30% ), linear-gradient( 135deg, #fffdf3, #edf8e9 );
}


.contact-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.orb-left {
    width: 300px;
    height: 300px;
    left: -130px;
    top: 40px;
    background: rgba(24,128,67,.08);
    animation: contactFloat 6s ease-in-out infinite;
}


.orb-right {
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -80px;
    background: rgba(230,170,0,.12);
    animation: contactFloat 5s ease-in-out infinite reverse;
}


.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: auto;
    animation: contactReveal .8s ease forwards;
}


.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.8);
    color: #176b38;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
}


    .contact-badge i {
        color: #d99e00;
    }


.contact-hero h1 {
    margin-top: 22px;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(42px,6vw,64px);
    font-weight: 800;
    color: #173e27;
}


    .contact-hero h1 span {
        color: #c8201d;
    }


.contact-hero p {
    max-width: 600px;
    margin: 15px auto 0;
    color: #687169;
    font-size: 18px;
    line-height: 1.7;
}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    padding: 100px 0;
    background: #fff;
}


.contact-info {
    padding-right: 20px;
}


.section-label {
    color: #bd201c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}


.contact-info h2 {
    margin-top: 10px;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    color: #173e27;
}


    .contact-info h2 span {
        color: #c8201d;
    }


.contact-intro {
    margin-top: 18px;
    color: #687169;
    line-height: 1.8;
}


/* INFO CARD */

.contact-info-card {
    display: flex;
    gap: 17px;
    padding: 18px 0;
    border-bottom: 1px solid #edf0eb;
}


.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf7e9;
    color: #188043;
    font-size: 21px;
    transition: .3s;
}


.contact-info-card:hover .contact-icon {
    background: #188043;
    color: #fff;
    transform: translateY(-3px);
}


.contact-info-card small {
    display: block;
    color: #929992;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.contact-info-card h4 {
    margin: 4px 0;
    color: #253d2c;
    font-size: 17px;
    font-weight: 700;
}


.contact-info-card p {
    margin: 4px 0 0;
    color: #6d756f;
    font-size: 14px;
    line-height: 1.6;
}


.contact-info-card a {
    color: #bd201c;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


    .contact-info-card a i {
        margin-left: 5px;
        transition: .3s;
    }


    .contact-info-card a:hover i {
        margin-left: 9px;
    }


/* SOCIAL */

.contact-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}


    .contact-social span {
        margin-right: 5px;
        color: #69716c;
        font-size: 13px;
        font-weight: 700;
    }


    .contact-social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #176b38;
        background: #edf7e9;
        text-decoration: none;
        transition: .3s;
    }


        .contact-social a:hover {
            background: #176b38;
            color: #fff;
            transform: translateY(-4px);
        }


/* =====================================================
   FORM
===================================================== */

.contact-form-card {
    padding: 40px;
    border-radius: 28px;
    background: #f8fbf5;
    border: 1px solid #e9eee7;
    box-shadow: 0 20px 50px rgba(0,0,0,.07);
}


.form-header span {
    color: #bd201c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.form-header h3 {
    margin-top: 7px;
    color: #173e27;
    font-size: 30px;
    font-weight: 800;
}


.form-header p {
    color: #737b75;
    font-size: 14px;
}


.contact-form-card label {
    display: block;
    margin-bottom: 7px;
    color: #3d5143;
    font-size: 13px;
    font-weight: 700;
}


.input-box {
    position: relative;
}


    .input-box > i {
        position: absolute;
        left: 16px;
        top: 16px;
        color: #7b8a80;
        z-index: 2;
    }


.contact-input {
    width: 100%;
    min-height: 52px;
    padding: 12px 15px 12px 44px;
    border: 1px solid #dfe7dd;
    border-radius: 13px;
    background: #fff;
    color: #26392c;
    outline: none;
    transition: .3s;
}


    .contact-input:focus {
        border-color: #188043;
        box-shadow: 0 0 0 4px rgba(24,128,67,.08);
    }


.contact-textarea {
    resize: vertical;
    min-height: 130px;
}


.textarea-box > i {
    top: 17px;
}


.contact-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 8px;
    border: none;
    border-radius: 50px;
    background: linear-gradient( 135deg, #c8201d, #e39b00 );
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(198,32,29,.2);
    transition: .35s;
}


    .contact-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 17px 32px rgba(198,32,29,.3);
    }


/* =====================================================
   BENEFITS
===================================================== */

.contact-benefits {
    padding: 90px 0;
    background: #f8fbf5;
}


.section-heading-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}


    .section-heading-center h2 {
        margin-top: 10px;
        color: #173e27;
        font-size: 42px;
        font-weight: 800;
    }


        .section-heading-center h2 span {
            color: #c8201d;
        }


.benefit-card {
    height: 100%;
    padding: 35px 25px;
    text-align: center;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e9eee7;
    transition: .4s;
}


    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }


.benefit-icon {
    width: 68px;
    height: 68px;
    margin: auto auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf5e8;
    color: #188043;
    font-size: 28px;
}


.benefit-card h4 {
    color: #173e27;
    font-weight: 800;
}


.benefit-card p {
    color: #727a74;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   LOCATION
===================================================== */

.contact-location {
    padding: 90px 0;
    background: #fff;
}


.location-box {
    min-height: 360px;
    display: grid;
    grid-template-columns: 40% 60%;
    overflow: hidden;
    border-radius: 28px;
    background: #f5f9f2;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}


.location-content {
    padding: 50px;
}


    .location-content h2 {
        margin: 10px 0;
        color: #173e27;
        font-size: 40px;
        font-weight: 800;
    }


        .location-content h2 span {
            color: #c8201d;
        }


    .location-content p {
        color: #69726c;
        line-height: 1.8;
    }


.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 50px;
    background: #176b38;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}


    .map-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(23,107,56,.2);
    }


.location-map {
    min-height: 360px;
    background: linear-gradient( 135deg, #dfeeda, #c8e3c6 );
    display: flex;
    align-items: center;
    justify-content: center;
}


.map-placeholder {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255,255,255,.7);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
    color: #176b38;
}


    .map-placeholder i {
        font-size: 45px;
        color: #c8201d;
        margin-bottom: 8px;
    }


    .map-placeholder span {
        font-weight: 800;
    }


    .map-placeholder small {
        color: #707870;
        margin-top: 3px;
    }


/* =====================================================
   FINAL CTA
===================================================== */

.contact-final {
    padding: 70px 0;
    background: #f8fbf5;
}


.contact-final-box {
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient( 120deg, #176b38, #24914d );
    box-shadow: 0 20px 45px rgba(23,107,56,.2);
}


    .contact-final-box > div {
        position: relative;
        z-index: 2;
    }


    .contact-final-box span {
        font-size: 11px;
        letter-spacing: 3px;
        font-weight: 800;
    }


    .contact-final-box h2 {
        margin: 8px 0;
        font-family: 'Noto Sans Devanagari', sans-serif;
        font-size: 34px;
        font-weight: 700;
    }


        .contact-final-box h2 strong {
            color: #ffd329;
        }


    .contact-final-box p {
        margin: 0;
        color: rgba(255,255,255,.8);
    }


.contact-final-btn {
    padding: 14px 25px;
    border-radius: 50px;
    background: #fff;
    color: #176b38 !important;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: .35s;
}


    .contact-final-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(0,0,0,.15);
    }


    .contact-final-btn i {
        margin-left: 8px;
    }


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes contactFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}


@keyframes contactReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-info {
        padding-right: 0;
    }

        .contact-info h2 {
            font-size: 38px;
        }

    .contact-form-card {
        padding: 30px;
    }

    .location-box {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 300px;
    }

    .contact-final-box {
        flex-direction: column;
        text-align: center;
    }
}


@media(max-width:576px) {

    .contact-hero {
        min-height: 340px;
    }

        .contact-hero h1 {
            font-size: 38px;
        }

        .contact-hero p {
            font-size: 16px;
        }

    .contact-info h2 {
        font-size: 33px;
    }

    .contact-form-card {
        padding: 22px;
    }

    .form-header h3 {
        font-size: 25px;
    }

    .section-heading-center h2 {
        font-size: 32px;
    }

    .location-content {
        padding: 30px;
    }

        .location-content h2 {
            font-size: 34px;
        }

    .contact-final-box {
        padding: 35px 20px;
    }

        .contact-final-box h2 {
            font-size: 27px;
        }
}

