
        :root {
            --primary-green: #2e7d32;
            --secondary-green: #4caf50;
            --light-green: #8bc34a;
            --dark-green: #1b5e20;
            --earth-brown: #795548;
            --light-tan: #efebe9;
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            padding-top: 80px;
        }
        
        h1, h2, h3, h4, h5, h6 {
             font-family: 'Lora', serif;   
        }

        p,a{
             font-family: 'Lora', serif;   
             letter-spacing: 0.5px;
        }
        
        .cultivation-hero {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1589923188937-cb64779f4abe?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        
        .animated-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .element {
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.15;
        }
        
        .element-1 {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 8%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 15 C60 10 75 15 85 30 C95 45 90 60 85 70 C80 80 65 85 50 85 C35 85 20 80 15 70 C10 60 5 45 15 30 C25 15 40 10 50 15 Z" fill="%232e7d32"/></svg>');
            animation: float 18s ease-in-out infinite;
        }
        
        .element-2 {
            width: 80px;
            height: 80px;
            top: 65%;
            left: 12%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%234caf50"/></svg>');
            animation: float 15s ease-in-out infinite reverse;
        }
        
        .element-3 {
            width: 100px;
            height: 100px;
            top: 25%;
            right: 10%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,15 65,40 95,45 75,65 80,95 50,80 20,95 25,65 5,45 35,40" fill="%238bc34a"/></svg>');
            animation: float 20s ease-in-out infinite;
        }
        
        .element-4 {
            width: 70px;
            height: 70px;
            bottom: 15%;
            right: 8%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="25" y="25" width="50" height="50" rx="10" fill="%231b5e20"/></svg>');
            animation: float 16s ease-in-out infinite reverse;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--earth-brown);
            margin-bottom: 40px;
            animation: fadeInUp 1.2s ease-out;
        }
        
        .hero-intro {
            color: #2e7d32;
            display: block;
            margin: auto;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 800px;
            animation: fadeInUp 1.4s ease-out;
        }
        
        .guide-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 1.6s ease-out;
        }
        
        .feature-item {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            background: white;
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            margin-top: 20px;
            width: 40px;
            height: 40px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            /* margin-right: 15px; */
            font-size: 1.2rem;
        }
        
        .feature-text {
            font-weight: 500;
            color: var(--dark-green);
        }
        
        .cta-buttons {
            animation: fadeInUp 1.8s ease-out;
        }
        
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--dark-green);
            border-color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .btn-outline-primary {
            border-color: var(--primary-green);
            color: var(--primary-green);
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--secondary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .hero-intro {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .cultivation-hero {
                min-height: auto;
                padding: 80px 0;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .guide-features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-item {
                width: 100%;
                max-width: 300px;
            }
            
            .cta-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-intro {
                font-size: 1rem;
            }
            
            .feature-item {
                padding: 12px 20px;
            }
            
            .feature-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            .btn-outline-primary, .btn-primary{
                max-width: 70%;
                display: block;
                margin: auto;
            }
        }
    






        
       /* Soil Preparation section */
        .soil-section {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .soil-content {
            margin-bottom: 50px;
        }
        
        .intro-text {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
            color: var(--earth-brown);
        }
        
        .guide-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .guide-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateY(50px);
        }
        
        .guide-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--earth-brown), var(--primary-green));
            transition: height 0.5s ease;
        }
        
        .guide-card:hover::before {
            height: 100%;
        }
        
        .guide-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .guide-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--earth-brown), var(--primary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 25px rgba(121, 85, 72, 0.3);
            transition: all 0.3s ease;
        }
        
        .guide-card:hover .guide-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(121, 85, 72, 0.4);
        }
        
        .guide-title {
            color: var(--dark-green);
            margin-bottom: 20px;
            font-size: 1.5rem;
            text-align: center;
            transition: color 0.3s ease;
        }
        
        .guide-card:hover .guide-title {
            color: var(--earth-brown);
        }
        
        .guide-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
            text-align: center;
        }
        
        .steps-container {
            background-color: var(--light-tan);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 50px;
            opacity: 1;
            transform: translateY(50px);
        }
        
        .steps-title {
            color: var(--dark-green);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .step-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .step-item:hover {
            transform: translateX(10px);
        }
        
        .step-number {
            min-width: 40px;
            height: 40px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-right: 20px;
            font-size: 1.2rem;
        }
        
        .step-text {
            color: #555;
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .guide-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .steps-container.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .guide-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .guide-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .guide-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        .steps-container {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .guide-container {
                gap: 20px;
            }
            
            .guide-card {
                max-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .soil-section {
                padding: 80px 0;
            }
            
            .guide-card {
                padding: 25px;
            }
            
            .steps-container {
                padding: 30px 20px;
            }
            
            .step-item {
                padding: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .guide-card {
                max-width: 100%;
            }
            
            .intro-text {
                font-size: 1.1rem;
            }
            
            .guide-title {
                font-size: 1.3rem;
            }
        }
    






        /* Planning technique Section */
        
        .planting-section {
            padding: 100px 0;
            background-color: var(--light-tan);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .intro-text {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
            color: var(--earth-brown);
        }
        
        .technique-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .technique-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateY(50px);
        }
        
        .technique-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary-green), var(--secondary-green));
            transition: height 0.5s ease;
        }
        
        .technique-card:hover::before {
            height: 100%;
        }
        
        .technique-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .tech-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
            transition: all 0.3s ease;
        }
        
        .technique-card:hover .tech-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
        }
        
        .tech-title {
            color: var(--dark-green);
            margin-bottom: 15px;
            font-size: 1.5rem;
            text-align: center;
            transition: color 0.3s ease;
        }
        
        .technique-card:hover .tech-title {
            color: var(--primary-green);
        }
        
        .tech-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
            text-align: center;
        }
        
        .visual-guide {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 50px;
            opacity: 1;
            transform: translateY(50px);
        }
        
        .guide-title {
            color: var(--dark-green);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .guide-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .guide-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 25px;
            background: var(--light-tan);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .guide-step:hover {
            transform: translateY(-5px);
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .step-title {
            color: var(--dark-green);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .step-description {
            color: #555;
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .technique-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .visual-guide.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .technique-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .technique-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .technique-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        .visual-guide {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .technique-cards {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .planting-section {
                padding: 80px 0;
            }
            
            .technique-card {
                padding: 25px;
            }
            
            .visual-guide {
                padding: 30px 20px;
            }
            
            .guide-steps {
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .intro-text {
                font-size: 1.1rem;
            }
            
            .tech-title {
                font-size: 1.3rem;
            }
            
            .guide-step {
                padding: 20px 15px;
            }
        }
    












   /* Irrigation and water management technique */
        .irrigation-section {
            padding: 100px 0;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1559028012-481c04fa702d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--water-blue);
        }
        
        .intro-text {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
            color: #555;
        }
        
        .importance-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
            text-align: center;
            border-left: 5px solid var(--water-blue);
            opacity: 1;
            transform: translateY(50px);
        }
        
        .importance-icon {
            font-size: 2.5rem;
            color: var(--secondary-green);
            margin-bottom: 20px;
        }
        
        .importance-text {
            font-size: 1.3rem;
            color: var(--dark-green);
            margin-bottom: 0;
            font-weight: 500;
        }
        
        .schedule-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .schedule-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateY(50px);
            text-align: center;
        }
        
        .schedule-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--water-blue), var(--light-blue));
            transition: height 0.5s ease;
        }
        
        .schedule-card:hover::before {
            height: 100%;
        }
        
        .schedule-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .schedule-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--water-blue), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--secondary-green);
            box-shadow: 0 10px 25px rgba(25, 118, 210, 0.3);
            transition: all 0.3s ease;
        }
        
        .schedule-card:hover .schedule-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(25, 118, 210, 0.4);
        }
        
        .schedule-title {
            color: var(--earth-brown);
            margin-bottom: 15px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .schedule-card:hover .schedule-title {
            color: var(--water-blue);
        }
        
        .schedule-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        .tips-container {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            opacity: 1;
            transform: translateY(50px);
        }
        
        .tips-title {
            color: var(--dark-green);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .tip-item {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background: rgba(25, 118, 210, 0.05);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .tip-item:hover {
            transform: translateX(10px);
            background: rgba(25, 118, 210, 0.1);
        }
        
        .tip-icon {
            min-width: 40px;
            height: 40px;
            background: var(--water-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-green);
            margin-right: 20px;
            font-size: 1.2rem;
        }
        
        .tip-content {
            flex: 1;
        }
        
        .tip-heading {
            color: var(--earth-brown);
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .tip-text {
            color: #555;
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .importance-box.animated,
        .schedule-card.animated,
        .tips-container.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .importance-box {
            animation-delay: 0.2s;
        }
        
        .schedule-card:nth-child(1) {
            animation-delay: 0.4s;
        }
        
        .schedule-card:nth-child(2) {
            animation-delay: 0.6s;
        }
        
        .tips-container {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .schedule-container {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .irrigation-section {
                padding: 80px 0;
            }
            
            .schedule-card {
                padding: 25px;
            }
            
            .tips-container {
                padding: 30px 20px;
            }
            
            .tips-grid {
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .intro-text {
                font-size: 1.1rem;
            }
            
            .schedule-title {
                font-size: 1.3rem;
            }
            
            .tip-item {
                padding: 15px;
            }
        }
   









        /* Fertilization and nutrition Section */
        
        .fertilization-section {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .intro-text {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
            color: #555;
        }
        
        .nutrition-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .nutrition-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateY(50px);
            text-align: center;
        }
        
        .nutrition-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--gold), var(--light-gold));
            transition: height 0.5s ease;
        }
        
        .nutrition-card:hover::before {
            height: 100%;
        }
        
        .nutrition-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .nutrition-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--earth-brown), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: #efebe9;
            box-shadow: 0 5px 10px #4caf50;
            transition: all 0.3s ease;
        }
        
        .nutrition-card:hover .nutrition-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 7px 12px rgba(255, 160, 0, 0.4);
        }
        
        .nutrition-title {
            color: var(--dark-green);
            margin-bottom: 15px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .nutrition-card:hover .nutrition-title {
            color: var(--gold);
        }
        
        .nutrition-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        .timeline-container {
            background: var(--light-tan);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
            opacity: 1;
            transform: translateY(50px);
        }
        
        .timeline-title {
            color: var(--dark-green);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gold);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 30px;
            position: relative;
            width: 100%;
        }
        
        .timeline-item:nth-child(odd) {
            justify-content: flex-start;
        }
        
        .timeline-item:nth-child(even) {
            justify-content: flex-end;
        }
        
        .timeline-content {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: calc(50% - 40px);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 40px;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 40px;
        }
        
        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--gold);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
        }
        
        .timeline-item:nth-child(odd) .timeline-dot {
            right: -10px;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
        }
        
        .timeline-time {
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .timeline-text {
            color: #555;
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        .recommendation-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            text-align: center;
            border-top: 5px solid var(--gold);
            opacity: 1;
            transform: translateY(50px);
        }
        
        .recommendation-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .recommendation-text {
            font-size: 1.3rem;
            color: var(--dark-green);
            margin-bottom: 0;
            font-weight: 500;
        }
        
        #candc{
            background: linear-gradient(135deg,var(--primary-green),var(--secondary-green));
        }
        #candc h4{
            color: #795548;
        }
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .nutrition-card.animated,
        .timeline-container.animated,
        .recommendation-box.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .nutrition-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .nutrition-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .timeline-container {
            animation-delay: 0.6s;
        }
        
        .recommendation-box {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .nutrition-cards {
                gap: 20px;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
            }
            
            .timeline-content {
                width: calc(100% - 70px);
                margin-left: 70px !important;
                margin-right: 0 !important;
            }
            
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 20px;
                right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .fertilization-section {
                padding: 80px 0;
            }
            
            .nutrition-card {
                padding: 25px;
            }
            
            .timeline-container {
                padding: 30px 20px;
            }
            
            .recommendation-box {
                padding: 25px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .intro-text {
                font-size: 1.1rem;
            }
            
            .nutrition-title {
                font-size: 1.3rem;
            }
            
            .timeline-content {
                width: calc(100% - 50px);
                margin-left: 50px !important;
            }
            
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 15px;
            }
        }
   
