        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;

            min-height: 100vh;
        }

        /*Nav*/
        nav {
            position: absolute;
            /* background-color: white; */
            /* box-shadow: 3px 3px 5px rgba(0,0,0,0.1); */
            z-index: 999;
            width: 100%;
            background: transparent;
            height: 120px;
        }

        img.logo {
            width: 105px;
            height: 90px;
        }

        nav ul {
            width: 100%;
            list-style: none;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        nav li {
            height: 100%;
        }

        nav a {
            height: 100%;
            padding: 0 30px;
            text-decoration: none;
            display: flex;
            align-items: center;
            color: black;
            color: #fff;
        }

        nav a:hover {
            color: yellow;
        }

        nav li:first-child {
            margin-right: auto;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 250px;
            z-index: 999;
            transition: width 0.3s ease;

            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            box=shadow: -10px 0 -10px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;

        }

        .sidebar-open {
            width: 250px;
            display: flex;
        }

        .sidebar-closed {
            display: none;
        }

        .sidebar li {
            width: 100%
        }

        .sidebar a {
            width: 100%
        }

        .menu-button {
            display: none;
        }

        .close-button {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            flex-direction: column;
        }

        /*End Nav*/

        /*hero*/
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgb(175, 255, 143) 0%, rgb(26, 46, 26) 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="10" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="90" r="3" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInLeft 1s ease-out;
            line-height: 70px;
        }

        .hero-text p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 60px;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .cta-button {
            background: #f59e0b;
            color: white;
            padding: 15px 30px;
            margin-top: 5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;

            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
            animation: slideInLeft 1s ease-out 0.4s both;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
        }

        .hero-visual {
            position: relative;
            height: 500px;
            animation: slideInRight 1s ease-out;
        }

        .plant-container {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }

        .plant {
            position: relative;
            top: -110px;
            right: 60px;
            animation: grow 2s ease-out 0.5s both;
        }

        @keyframes grow {
            0% {
                transform: scaleY(0);
                transform-origin: bottom;
            }

            100% {
                transform: scaleY(1);
            }
        }

        .pot {
            width: 120px;
            height: 100px;
            background: linear-gradient(145deg, #8B4513, #A0522D);
            border-radius: 0 0 25px 25px;
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .pot::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            height: 20px;
            background: linear-gradient(145deg, #CD853F, #D2691E);
            border-radius: 10px;
        }

        .stem {
            width: 8px;
            height: 200px;
            background: linear-gradient(to top, #228B22, #32CD32);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -200px;
            border-radius: 4px 4px 0 0;
        }

        .leaf {
            position: absolute;
            width: 40px;
            height: 60px;
            background: linear-gradient(45deg, #228B22, #32CD32);
            border-radius: 0 100% 0 100%;
            animation: leafSway 3s ease-in-out infinite;
        }

        .leaf1 {
            top: -200px;
            left: -55px;
            transform: rotate(-30deg);
            animation-delay: 0s;
        }

        .leaf2 {
            top: -140px;
            right: -50px;
            transform: rotate(30deg);
            animation-delay: 0.5s;
        }

        .leaf3 {
            top: -90px;
            left: -56px;
            transform: rotate(-45deg);
            animation-delay: 1s;
        }

        @keyframes leafSway {

            0%,
            100% {
                transform: rotate(var(--initial-rotation, 0deg));
            }

            50% {
                transform: rotate(calc(var(--initial-rotation, 0deg) + 10deg));
            }
        }

        .leaf1 {
            --initial-rotation: -30deg;
        }

        .leaf2 {
            --initial-rotation: 70deg;
        }

        .leaf3 {
            --initial-rotation: -45deg;
        }

        .petal {
            position: absolute;
            width: 60px;
            height: 90px;
            background: linear-gradient(45deg, rgb(253, 166, 53), rgb(243, 247, 34));
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            transform-origin: center bottom;
        }


        .petal1 {
            top: -290px;
            left: 50%;
            transform: translateX(-50%) rotate(0deg) scale(0);
            animation: petalBloom 0.6s ease-out 1.2s both;
        }

        .petal2 {
            top: -290px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg) scale(0);
            animation: petalBloom 0.6s ease-out 1.3s both;
        }

        .petal3 {
            top: -290px;
            left: 50%;
            transform: translateX(-50%) rotate(90deg) scale(0);
            animation: petalBloom 0.6s ease-out 1.4s both;
        }

        .petal4 {
            top: -290px;
            left: 50%;
            transform: translateX(-50%) rotate(135deg) scale(0);
            animation: petalBloom 0.6s ease-out 1.5s both;
        }

        .petal5 {
            top: -290px;
            left: 50%;
            transform: translateX(-50%) rotate(180deg) scale(0);
            animation: petalBloom 0.6s ease-out 1.6s both;
        }

        .petal6 {
            top: -290px;
            left: 50%;
            transform: translateX(-50%) rotate(225deg) scale(0);
            animation: petalBloom 0.6s ease-out 1.7s both;
        }

        .petal7 {
            top: -290px;
            left: 50%;
            transform: translateX(-50%) rotate(270deg) scale(0);
            animation: petalBloom 0.6s ease-out 1.8s both;
        }

        .petal8 {
            top: -290px;
            left: 50%;
            transform: translateX(-50%) rotate(315deg) scale(0);
            animation: petalBloom 0.6s ease-out 1.9s both;
        }

        .flower-center {
            position: absolute;
            top: -218px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: radial-gradient(circle, rgb(141, 10, 10), rgb(99, 3, 3));
            border-radius: 50%;
            z-index: 10;
            animation: centerBloom 0.8s ease-out 1.8s both;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
        }

        @keyframes petalBloom {
            0% {
                transform: translateX(-50%) rotate(var(--rotation, 0deg)) scale(0);
                opacity: 0;
            }

            50% {
                transform: translateX(-50%) rotate(var(--rotation, 0deg)) scale(1.1);
                opacity: 0.8;
            }

            100% {
                transform: translateX(-50%) rotate(var(--rotation, 0deg)) scale(1);
                opacity: 1;
            }
        }

        @keyframes centerBloom {
            0% {
                transform: translateX(-50%) scale(0);
                opacity: 0;
            }

            100% {
                transform: translateX(-50%) scale(1);
                opacity: 1;
            }
        }

        .petal1 {
            --rotation: 0deg;
        }

        .petal2 {
            --rotation: 45deg;
        }

        .petal3 {
            --rotation: 90deg;
        }

        .petal4 {
            --rotation: 135deg;
        }

        .petal5 {
            --rotation: 180deg;
        }

        .petal6 {
            --rotation: 225deg;
        }

        .petal7 {
            --rotation: 270deg;
        }

        .petal8 {
            --rotation: 315deg;
        }

        /*end hero*/

        /*features*/
        @keyframes slideInLeft {
            0% {
                transform: translateX(-100px);
                opacity: 0;
            }

            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            0% {
                transform: translateX(100px);
                opacity: 0;
            }

            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .features {
            min-height: 100vh;
            padding: 100px 0;
            /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */

            background-image: url('/images/belper-mill-from-chevin.jpg');
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: center;

        }

        .text-overlay {

            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(1px);
            border-radius: 15px;
            padding: 40px 60px;

            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #d9ff00, #7aa502, #005c14);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }


        .features-title {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
        }

        .features-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /*end features*/

        /*packages*/
        .packages-section {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 4rem 0;
            background: linear-gradient(135deg, #1a2e1a 0%, #2d5a2d 100%);
        }

        .packages-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .packages-title {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;

        }

        .packages-subtitle {
            font-size: 1.2rem;
            color: #ddd;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .special-offer {
            color: #f59e0b;
            display: flex;
            justify-content: center;
            margin-top: 10px;
            border-bottom: 1px solid #f59e0b;
            border-top: 1px solid #f59e0b;
            max-width: 600px;
            margin: 40px auto;
            padding: 15px 0;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            animation: fadeInUp 0.8s ease-out;

            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
        }

        .package-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .package-card:nth-child(2) {
            animation-delay: 0.4s;
            transform: scale(1.05);
            border: 2px solid #22c55e;
            background: rgba(34, 197, 94, 0.1);
        }

        .package-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .package-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: #22c55e;
            box-shadow: 0 25px 50px rgba(34, 197, 94, 0.3);
        }

        .package-card:hover::before {
            opacity: 1;
        }

        .package-card.featured {
            border-color: #22c55e;
            background: rgba(34, 197, 94, 0.1);
        }


        .package-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .package-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .package-card:hover .package-icon {
            transform: rotate(360deg) scale(1.25);
        }

        .package-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #22c55e;
            margin-bottom: 0.25rem;
        }

        .package-period {
            color: #a3a3a3;
            font-size: 0.9rem;
        }

        .package-features {
            list-style: none;
            margin: 2rem 0;
        }

        .package-features li {
            padding: 0.75rem 0;
            color: #e5e5e5;
            position: relative;
            padding-left: 2rem;
            transition: color 0.3s ease;
        }

        .package-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #22c55e;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .package-card:hover .package-features li {
            color: #ffffff;
        }

        .package-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border: none;
            border-radius: 12px;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: flex;
            justify-content: center;
            margin-top: auto;
        }



        .package-btn:hover {
            background: linear-gradient(135deg, #22c55e, rgb(27, 168, 79));
            ;
        }


        .popular-badge {
            position: absolute;
            top: 5px;
            right: 20px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: pulse 2s infinite;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(74, 222, 128, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            left: 20%;
            animation-delay: 1s;
        }

        .floating-element:nth-child(3) {
            top: 40%;
            left: 80%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(4) {
            top: 80%;
            left: 60%;
            animation-delay: 3s;
        }

        .floating-element:nth-child(5) {
            top: 10%;
            left: 70%;
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        @media (max-width: 768px) {
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .package-card:nth-child(2) {
                transform: none;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .package-card {
                padding: 2rem;
                margin-top: 2rem;
            }
        }

        /*end packages*/

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding-top: 100px;
            }


            .hero-text h1 {
                font-size: 2.5rem;
                line-height: 55px;
            }

            .hero-text p {
                margin: 50px 0;
            }

            .hero-visual {
                height: 300px;
            }

            .stem {
                height: 120px;
                top: -120px;
            }

            .leaf1 {
                top: -120px;
            }

            .leaf2 {
                top: -100px;
            }

            .leaf3 {
                top: -80px;
            }

            .petal {
                width: 40px;
                height: 70px;
            }

            .petal1 {
                top: -220px;
            }

            .petal2 {
                top: -220px;
            }

            .petal3 {
                top: -220px;
            }

            .petal4 {
                top: -220px;
            }

            .petal5 {
                top: -220px;
            }

            .petal6 {
                top: -220px;
            }

            .petal7 {
                top: -220px;
            }

            .petal8 {
                top: -220px;
            }

            .flower-center {
                top: -165px;
            }
        }


        /*form*/
        .contact-form-container {
            width: 600px;
            padding-bottom: 10rem;


        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .contact-header {
            text-align: center;
            margin: 4rem 0;

        }

        .contact-title {
            font-size: 3rem;
            font-weight: 700;
            color: rgb(27, 95, 0);
            margin-bottom: 1rem;

        }

        .contact-subtitle {
            font-size: 1.2rem;
            color: #a3a3a3;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            outline: none;
            resize: none;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: #667eea;
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .form-input:focus+.form-label,
        .form-textarea:focus+.form-label {
            color: #667eea;
        }

        .form-textarea {
            min-height: 120px;
            font-family: inherit;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: rgb(27, 95, 0);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 16px;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:active {
            transform: translateY(0);
        }



        #contact-form-status {
            /* background: linear-gradient(135deg, #10b981, #059669); */
            color: linear-gradient(135deg, #10b981, #059669);
            padding: 16px;
            /* border-radius: 12px; */
            margin-bottom: 24px;
            text-align: center;
            font-weight: 600;
            margin-top: 20px;
        }

        /*form*/

        @media(max-width: 768px) {
            .hide-on-mobile {
                display: none;
            }

            .menu-button {
                display: block;
                color: #fff;
            }

            .contact-form-container {
                width: 100%;
                padding-bottom: 10rem;
            }

            .sidebar li {
                height: 50px;
            }

            #contact {
                padding: 0 20px;
            }
        }


        @media(max-width: 425px) {
            .sidebar {
                font-size: 3rem;

            }

            .sidebar-open {
                width: 100%;
                display: flex;
            }


            .sidebar li {

                height: 120px;
            }

            .features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 40px;
                margin-top: 60px;
            }



        }



        .margin-auto {
            margin: auto;
        }