       :root {
            --brand-green: #6AB800;
            --brand-green-dark: #4F8A00;
            --brand-green-light: #E9F7D8;
            --brand-green-soft: #F4FBE8;
            --brand-gold: #D99A25;
            --brand-gold-light: #FFF3E0;
            --brand-cream: #FCFAF5;
            --brand-text: #2D2D2D;
            --brand-text-light: #666;
            --brand-border: #E8E0D4;
            --brand-white: #FFFFFF;
            --brand-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            --brand-shadow-hover: 0 16px 48px rgba(106, 184, 0, 0.12);
            --brand-radius: 20px;
            --brand-radius-sm: 12px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", sans-serif;
            color: var(--brand-text);
            background: var(--brand-white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        .ghee-section h1{
           
                font-size:28px;
                margin-bottom : 10px;
           
        }
        .p-top{
            padding-top  :30px !important;
        }

        /* ========================================
               COMMON
            ======================================== */
        .ghee-page {
            overflow: hidden;
        }

        .ghee-container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        .ghee-section {
            padding: 0px 0 45px;
        }

        .ghee-section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .ghee-section-title .ghee-small-title {
            display: inline-block;
            color: var(--brand-green);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 12px;
            background: var(--brand-green-light);
            padding: 6px 20px;
            border-radius: 50px;
        }

        .ghee-section-title h2 {
            color: var(--brand-text);
            font-size: 26px;
            line-height: 1.25;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .ghee-section-title h2 span {
            color: var(--brand-green);
        }

        .ghee-section-title p {
           
            margin: auto;
            color: var(--brand-text-light);
            font-size: 16px;
            text-align: left;
        }

        .ghee-highlight {
            color: var(--brand-green);
            font-weight: 600;
        }

        /* ========================================
               HERO
            ======================================== */
        .ghee-hero {
            position: relative;
            padding: 110px 0 90px;
            background: var(--brand-white);
            overflow: hidden;
        }

        .ghee-hero::before {
            content: "";
            position: absolute;
            width: 620px;
            height: 620px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(106, 184, 0, 0.07), transparent 70%);
            top: -280px;
            right: -180px;
            z-index: 0;
        }

        .ghee-hero::after {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(217, 154, 37, 0.05), transparent 70%);
            bottom: -150px;
            left: -120px;
            z-index: 0;
        }

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

        .ghee-hero-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--brand-green-light);
            color: var(--brand-green-dark);
            border: none;
            border-radius: 50px;
            padding: 10px 24px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(106, 184, 0, 0.10);
        }

        .ghee-hero-label i {
            font-size: 16px;
        }

        .ghee-hero h1 {
            font-size: 30px;
            color: var(--brand-text);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .ghee-hero h1 span {
            color: var(--brand-green);
            position: relative;
        }

        .ghee-hero h1 span::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--brand-green-light);
            border-radius: 4px;
        }

        .ghee-hero-description {
            font-size: 16px;
            color: var(--brand-text-light);
            line-height: 1.8;
            margin-bottom : 18px;
        }

        /* ========================================
               INTRO
            ======================================== */
        .ghee-intro {
            padding: 80px 0 40px;
        }

        .ghee-intro-text {
            font-size: 16px;
            color: var(--brand-text-light);
        }

        /* ========================================
               WHY CHOOSE US
            ======================================== */
        .ghee-feature-card {
            height: 100%;
            background: var(--brand-white);
            padding: 34px 28px;
            border: 1px solid rgba(106, 184, 0, 0.08);
            border-radius: var(--brand-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: var(--brand-shadow);
        }

        .ghee-feature-card::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(106, 184, 0, 0.05);
            right: -40px;
            top: -40px;
            transition: var(--transition);
        }

        .ghee-feature-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .ghee-feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(106, 184, 0, 0.20);
            box-shadow: var(--brand-shadow-hover);
        }

        .ghee-feature-card:hover::before {
            transform: scale(1.6);
        }

        .ghee-feature-card:hover::after {
            transform: scaleX(1);
        }

        .ghee-feature-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: var(--brand-green-light);
            color: var(--brand-green-dark);
            font-size: 22px;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .ghee-feature-card:hover .ghee-feature-icon {
            background: var(--brand-green);
            color: #fff;
            transform: scale(1.05);
        }

        .ghee-feature-card h4 {
            font-size: 18px;
            color: var(--brand-text);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .ghee-feature-card p {
            font-size: 14px;
            margin: 0;
            color: var(--brand-text-light);
            line-height: 1.7;
        }

        .ghee-organic-note {
            margin-top: 40px;
            background: var(--brand-white);
            border-left: 4px solid var(--brand-green);
            padding: 28px 34px;
            border-radius: 0 var(--brand-radius-sm) var(--brand-radius-sm) 0;
            box-shadow: var(--brand-shadow);
            position: relative;
        }

        .ghee-organic-note::before {
            content: "\f05a";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 48px;
            color: rgba(106, 184, 0, 0.06);
        }

        .ghee-organic-note p {
            position: relative;
            z-index: 1;
            font-size: 15px;
        }

        /* ========================================
               PRODUCT FEATURES
            ======================================== */
        .ghee-feature-list {
            background: var(--brand-white);
            padding: 40px 36px;
            border-radius: var(--brand-radius);
            height: 100%;
            border: 1px solid rgba(106, 184, 0, 0.08);
            box-shadow: var(--brand-shadow);
            transition: var(--transition);
        }

        .ghee-feature-list:hover {
            box-shadow: var(--brand-shadow-hover);
            border-color: rgba(106, 184, 0, 0.15);
        }

        .ghee-feature-list h3 {
            color: var(--brand-text);
            font-size: 22px;
            margin-bottom: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ghee-feature-list h3::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 28px;
            background: var(--brand-green);
            border-radius: 4px;
        }

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

        .ghee-list li {
            position: relative;
            padding: 12px 0 12px 36px;
            font-size: 15px;
            border-bottom: 1px solid rgba(106, 184, 0, 0.06);
            color: var(--brand-text-light);
            line-height: 1.6;
        }

        .ghee-list li:last-child {
            border-bottom: 0;
        }

        .ghee-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 13px;
            color: var(--brand-green);
            font-size: 16px;
        }

        .ghee-list li strong {
            color: var(--brand-text);
            font-weight: 600;
        }

        /* ========================================
               BENEFITS
            ======================================== */
        .ghee-benefit-section {
            background: var(--brand-white);
        }

        .ghee-benefit-card {
            height: 100%;
            padding: 28px 24px;
            border: 1px solid rgba(106, 184, 0, 0.06);
            border-radius: var(--brand-radius);
            background: var(--brand-white);
            transition: var(--transition);
            box-shadow: var(--brand-shadow);
        }

        .ghee-benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--brand-shadow-hover);
            border-color: rgba(106, 184, 0, 0.15);
        }

        .ghee-benefit-number {
            font-size: 32px;
            font-weight: 800;
            color: rgba(106, 184, 0, 0.12);
            margin-bottom: 6px;
            line-height: 1;
        }

        .ghee-benefit-card h4 {
            color: var(--brand-text);
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .ghee-benefit-card p {
            font-size: 14px;
            margin: 0;
            color: var(--brand-text-light);
            line-height: 1.7;
        }

        /* ========================================
               SPECIFICATIONS — REDESIGNED TABLE
            ======================================== */
        .ghee-spec-section {
            background: var(--brand-cream);
        }

        .ghee-spec-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .ghee-spec-item {
            background: var(--brand-white);
            border-radius: var(--brand-radius-sm);
            padding: 24px 28px;
            box-shadow: var(--brand-shadow);
            border: 1px solid rgba(106, 184, 0, 0.06);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .ghee-spec-item:hover {
            box-shadow: var(--brand-shadow-hover);
            border-color: rgba(106, 184, 0, 0.15);
            transform: translateY(-4px);
        }

        .ghee-spec-item .ghee-spec-label {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--brand-green-dark);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ghee-spec-item .ghee-spec-label i {
            color: var(--brand-green);
            font-size: 14px;
        }

        .ghee-spec-item .ghee-spec-value {
            font-size: 15px;
            color: var(--brand-text-light);
            line-height: 1.6;
        }

        .ghee-spec-item .ghee-spec-value strong {
            color: var(--brand-text);
        }
        .ghee-hero-content h2{
            font-size : 25px;
            margin-bottom : 10px;
        }
        .ghee-hero-content h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    margin-top: 8px;
    background: #fbbb00;
    border-radius: 3px;
}

.p-t {
    padding-top : 16px;
}
.pnb{
    padding-bottom : 20px;
}
.p-b{
    padding-bottom : 8px;
}

        /* ========================================
               MANUFACTURING PROCESS
            ======================================== */
        .ghee-process {
            position: relative;
        }

        .ghee-process-item {
            position: relative;
            padding-left: 90px;
            margin-bottom: 28px;
        }

        .ghee-process-item:last-child {
            margin-bottom: 0;
        }

        .ghee-process-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(106, 184, 0, 0.25);
            transition: var(--transition);
        }

        .ghee-process-item:hover .ghee-process-number {
            transform: scale(1.08);
            box-shadow: 0 12px 32px rgba(106, 184, 0, 0.35);
        }

        .ghee-process-item:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 29px;
            top: 60px;
            height: calc(100% - 20px);
            width: 2px;
            background: linear-gradient(to bottom, var(--brand-green), rgba(106, 184, 0, 0.15));
        }

        .ghee-process-content {
            background: var(--brand-white);
            padding: 24px 28px;
            border-radius: var(--brand-radius-sm);
            border: 1px solid rgba(106, 184, 0, 0.06);
            transition: var(--transition);
            box-shadow: var(--brand-shadow);
        }

        .ghee-process-content:hover {
            transform: translateX(8px);
            box-shadow: var(--brand-shadow-hover);
            border-color: rgba(106, 184, 0, 0.15);
        }

        .ghee-process-content h4 {
            color: var(--brand-text);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .ghee-process-content p {
            margin: 0;
            font-size: 14px;
            color: var(--brand-text-light);
        }

        /* ========================================
               FAQ — ENHANCED (no background)
            ======================================== */
        .ghee-faq-section {
            background: transparent;
        }

        .ghee-faq {
            max-width: 950px;
            margin: auto;
        }

        .ghee-faq .accordion-item {
            border: 1px solid rgba(106, 184, 0, 0.10);
            border-radius: var(--brand-radius-sm) !important;
            margin-bottom: 16px;
            overflow: hidden;
            background: var(--brand-white);
            box-shadow: var(--brand-shadow);
            transition: var(--transition);
        }

        .ghee-faq .accordion-item:hover {
            box-shadow: var(--brand-shadow-hover);
        }

        .ghee-faq .accordion-button {
            font-family: "Inter", sans-serif;
            color: var(--brand-text);
            font-weight: 600;
            font-size: 15px;
            padding: 22px 28px;
            background: var(--brand-white);
            box-shadow: none;
            transition: var(--transition);
        }

        .ghee-faq .accordion-button:not(.collapsed) {
            color: var(--brand-green-dark);
            background: var(--brand-green-light);
        }

        .ghee-faq .accordion-button:focus {
            box-shadow: none;
            border-color: var(--brand-green);
        }

        .ghee-faq .accordion-button::after {
            background-size: 16px;
            transition: var(--transition);
        }

        .ghee-faq .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236AB800'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }

        .ghee-faq .accordion-body {
            padding: 0 28px 28px;
            color: var(--brand-text-light);
            font-size: 14px;
            line-height: 1.8;
        }

        /* ========================================
               CTA
            ======================================== */
        .ghee-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .ghee-cta::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            top: -200px;
            right: -150px;
        }

        .ghee-cta::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            bottom: -120px;
            left: -80px;
        }

        .ghee-cta h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
        }

        .ghee-cta p {
            max-width: 750px;
            margin: auto;
            opacity: 0.92;
            font-size: 16px;
            position: relative;
            z-index: 1;
            line-height: 1.8;
        }

        /* ========================================
               ANIMATIONS
            ======================================== */
        .ghee-fade-up {
            animation: gheeFadeUp 0.8s ease both;
        }

        @keyframes gheeFadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
               RESPONSIVE
            ======================================== */
        @media (max-width: 1199px) {
            .ghee-container {
                max-width: 94%;
            }
            .ghee-hero h1 {
                font-size: 42px;
            }
            .ghee-section {
                padding: 75px 0;
            }
            .ghee-section-title h2 {
                font-size: 34px;
            }
        }

        @media (max-width: 991px) {
            .ghee-hero {
                padding: 80px 0 70px;
            }
            .ghee-hero h1 {
                font-size: 36px;
            }
            .ghee-section-title h2 {
                font-size: 30px;
            }
            .ghee-feature-list {
                margin-bottom: 24px;
            }
            .ghee-cta h2 {
                font-size: 30px;
            }
            .ghee-spec-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            .ghee-section {
                padding: 60px 0;
            }
            .ghee-hero {
                padding: 60px 0 50px;
            }
            .ghee-hero h1 {
                font-size: 30px;
            }
            .ghee-hero-description {
                font-size: 15px;
            }
            .ghee-section-title {
                margin-bottom: 40px;
            }
            .ghee-section-title h2 {
                font-size: 26px;
            }
            .ghee-section-title p {
                font-size: 14px;
            }
            .ghee-process-item {
                padding-left: 75px;
            }
            .ghee-process-number {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
            .ghee-process-item:not(:last-child)::after {
                left: 24px;
                top: 50px;
            }
            .ghee-process-content {
                padding: 18px 20px;
            }
            .ghee-cta h2 {
                font-size: 26px;
            }
            .ghee-cta {
                padding: 60px 0;
            }
            .ghee-feature-list {
                padding: 30px 24px;
            }
            .ghee-feature-list h3 {
                font-size: 19px;
            }
            .ghee-spec-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .ghee-spec-item {
                padding: 20px 22px;
            }
        }

        @media (max-width: 575px) {
            
             .ghee-hero-content h2{
            font-size : 20px;
            margin-bottom : 10px;
        }
        .p-t {
    padding-top : 16px !important;
}
        
            .ghee-feature-list h3 {
 
  margin-bottom: 15px;
            }
            .ghee-section h1 {
  font-size: 24px;
            }
              .ghee-section {
    padding: 0px 0 30px;
  }
            .ghee-container {
                max-width: 92%;
            }
            .ghee-hero h1 {
                font-size: 26px;
            }
            .ghee-hero-label {
                font-size: 12px;
                padding: 8px 16px;
            }
            .ghee-section-title h2 {
                font-size: 22px;
            }
            .ghee-feature-card {
                padding: 24px 20px;
            }
            .ghee-benefit-card {
                padding: 20px;
            }
            .ghee-process-item {
                padding-left: 65px;
            }
            .ghee-process-number {
                width: 44px;
                height: 44px;
                font-size: 14px;
            }
            .ghee-process-item:not(:last-child)::after {
                left: 21px;
                top: 44px;
            }
            .ghee-faq .accordion-button {
                font-size: 14px;
                padding: 18px 20px;
            }
            .ghee-faq .accordion-body {
                padding: 0 20px 20px;
                font-size: 13px;
            }
            .ghee-organic-note {
                padding: 20px 24px;
            }
            .ghee-organic-note::before {
                font-size: 32px;
                right: 16px;
            }
            .ghee-cta h2 {
                font-size: 23px;
            }
              .ghee-section-title {
    margin-bottom: 21px;
  }
            .ghee-feature-list {
                padding: 24px 18px 0px;
            }
            .ghee-feature-list h3 {
                font-size: 17px;
            }
            .ghee-list li {
                font-size: 13px;
                padding: 10px 0 10px 30px;
            }
            .ghee-list li::before {
                font-size: 14px;
                top: 11px;
            }
            .ghee-spec-item {
                padding: 16px 18px;
            }
            .ghee-spec-item .ghee-spec-value {
                font-size: 14px;
            }
        }