
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        :root {
            --primary: #3a9d97;
            --secondary: #f5a623;
            --dark: #2d3142;
            --light: #f7f9fc;
            --accent: #e94f37;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }
        
        p {
            line-height: 1.6;
        }
        
        /* Navigation */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .nav-container.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            transition: all 0.3s ease;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }

        html{
            overflow-x: hidden;
        }
        
        .logo svg {
            height: 40px;
            margin-right: 0.5rem;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2.5rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
        }
        
        /* Hero Section - Diagonal Split Design */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 55% 45%;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(58, 157, 151, 0.1) 0%, rgba(47, 128, 123, 0.2) 100%);
            z-index: -1;
        }
        
        .hero-content {
            padding: 0 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        .hero-image {
            position: relative;
            overflow: hidden;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            animation: zoomIn 1.5s ease;
            transition: transform 0.3s ease;
        }
        
        .hero-image:hover img {
            transform: scale(1.05);
        }
        
        .hero-badge {
            position: absolute;
            top: 20%;
            right: -30px;
            background-color: var(--secondary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            transform: rotate(15deg);
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
            animation: float 3s ease-in-out infinite;
            z-index: 3;
        }
        
        /* About Section with Hexagonal Grid */
        .about {
            padding: 10rem 5%;
            position: relative;
            background-color: white;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .about-content h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            margin-top: 0.5rem;
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
        }
        
        .hex-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 15px;
            margin: 30px 0;
        }
        
        .hex {
            position: relative;
            width: 100%;
            padding-bottom: 115%; /* Creates hexagon ratio */
            overflow: hidden;
            visibility: hidden;
            outline: 1px solid transparent; /* Fix for jagged edges */
            transform: rotate(30deg);
        }
        
        .hex:nth-child(1) { grid-column: 1; grid-row: 1; }
        .hex:nth-child(2) { grid-column: 2; grid-row: 1; }
        .hex:nth-child(3) { grid-column: 3; grid-row: 1; }
        .hex:nth-child(4) { grid-column: 1; grid-row: 2; }
        .hex:nth-child(5) { grid-column: 2; grid-row: 2; }
        .hex:nth-child(6) { grid-column: 3; grid-row: 2; }
        
        .hex-inner {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            transform: rotate(-30deg) scale(1.1);
            visibility: visible;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: white;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .hex-inner:hover {
            transform: rotate(-30deg) scale(1.15);
            background-color: var(--dark);
        }
        
        .hex-content {
            padding: 10px;
            transform: rotate(-30deg);
        }
        
        .hex-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .hex-title {
            font-size: 0.9rem;
            font-weight: 700;
        }
        
        /* Services Section with Staggered Cards */
        .services {
            padding: 8rem 5%;
            background-color: #f7f9fc;
            position: relative;
        }
        
        .section-heading {
            text-align: center;
            margin-bottom: 5rem;
        }
        
        .section-heading h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-heading h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
        }
        
        .section-heading p {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: minmax(100px, auto);
            grid-gap: 20px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-card.featured {
            background-color: var(--primary);
            color: white;
        }
        
        .service-card:nth-child(1) {
            grid-column: 1 / span 6;
            grid-row: 1 / span 4;
        }
        
        .service-card:nth-child(2) {
            grid-column: 7 / span 6;
            grid-row: 2 / span 4;
        }
        
        .service-card:nth-child(3) {
            grid-column: 3 / span 8;
            grid-row: 6 / span 4;
        }
        
        .service-header {
            height: 200px;
            overflow: hidden;
        }
        
        .service-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-header img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 2rem;
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .service-description {
            margin-bottom: 1.5rem;
        }
        
        .service-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }
        
        .service-card.featured .service-price {
            color: white;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-card.featured .btn {
            background-color: white;
            color: var(--primary);
        }
        
        .service-card.featured .btn:hover {
            background-color: var(--dark);
            color: white;
        }
        
        /* Interactive Nutrient Wheel Section */
        .nutrient-wheel-section {
            padding: 8rem 5%;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .nutrient-wheel-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        
        .wheel-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }
        
        .nutrient-wheel {
            position: relative;
            width: 600px;
            height: 600px;
            margin: 0 auto;
        }
        
        .wheel-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            text-align: center;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(58, 157, 151, 0.3);
        }
        
        .nutrient-segment {
            position: absolute;
            width: 225px;
            height: 225px;
            top: 50%;
            left: 50%;
            transform-origin: 0 0;
            background-color: var(--light);
            border-radius: 0 100% 100% 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .nutrient-segment:hover {
            transform-origin: 0 0;
            filter: brightness(0.95);
        }
        
        .nutrient-segment:nth-child(1) {
            transform: translate(-50%, -50%) rotate(0deg);
            background-color: #FFCDD2;
        }
        
        .nutrient-segment:nth-child(2) {
            transform: translate(-50%, -50%) rotate(45deg);
            background-color: #C8E6C9;
        }
        
        .nutrient-segment:nth-child(3) {
            transform: translate(-50%, -50%) rotate(90deg);
            background-color: #BBDEFB;
        }
        
        .nutrient-segment:nth-child(4) {
            transform: translate(-50%, -50%) rotate(135deg);
            background-color: #D1C4E9;
        }
        
        .nutrient-segment:nth-child(5) {
            transform: translate(-50%, -50%) rotate(180deg);
            background-color: #FFECB3;
        }
        
        .nutrient-segment:nth-child(6) {
            transform: translate(-50%, -50%) rotate(225deg);
            background-color: #B2DFDB;
        }
        
        .nutrient-segment:nth-child(7) {
            transform: translate(-50%, -50%) rotate(270deg);
            background-color: #F8BBD0;
        }
        
        .nutrient-segment:nth-child(8) {
            transform: translate(-50%, -50%) rotate(315deg);
            background-color: #B3E5FC;
        }
        
        .segment-content {
            position: absolute;
            width: 100px;
            text-align: center;
            transform: rotate(-45deg);
            right: 30px;
            top: 60px;
        }
        
        .nutrient-segment:nth-child(1) .segment-content { transform: rotate(0deg); }
        .nutrient-segment:nth-child(2) .segment-content { transform: rotate(-45deg); }
        .nutrient-segment:nth-child(3) .segment-content { transform: rotate(-90deg); }
        .nutrient-segment:nth-child(4) .segment-content { transform: rotate(-135deg); }
        .nutrient-segment:nth-child(5) .segment-content { transform: rotate(-180deg); }
        .nutrient-segment:nth-child(6) .segment-content { transform: rotate(-225deg); }
        .nutrient-segment:nth-child(7) .segment-content { transform: rotate(-270deg); }
        .nutrient-segment:nth-child(8) .segment-content { transform: rotate(-315deg); }
        
        .segment-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .nutrient-info {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            background-color: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            z-index: 11;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        
        .nutrient-info.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        .nutrient-info h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .nutrient-info p {
            margin-bottom: 1rem;
        }
        
        .nutrient-info .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Testimonials with Parallax */
        .testimonials {
            padding: 8rem 0;
            position: relative;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(45, 49, 66, 0.85);
        }
        
        .testimonials-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        .testimonials-heading {
            text-align: center;
            color: white;
            margin-bottom: 4rem;
        }
        
        .testimonials-heading h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .testimonials-heading p {
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-gap: 2rem;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            padding: 2rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-content {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-content::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 0;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.3;
            line-height: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: #777;
        }
        
        /* Contact with Asymmetric Split */
        .contact {
            padding: 8rem 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .contact-form {
            padding: 4rem;
            position: relative;
            z-index: 1;
        }
        
        .contact-form h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .contact-form p {
            margin-bottom: 2rem;
            max-width: 500px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid #eaeaea;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-map {
            position: relative;
            overflow: hidden;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
        }
        
        .map-content {
            position: absolute;
            width: 100%;
            height: 100%;
            /* background-color: var(--primary); */
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            padding-left: 5rem;
            /* color: white; */
        }
        
        .contact-info {
            margin-bottom: 2rem;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        .social-links {
            display: flex;
            margin-top: 2rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 1rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            grid-gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo svg {
            height: 30px;
            margin-right: 0.5rem;
            fill: white;
        }
        
        .footer-about p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .footer-heading::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            margin-top: 0.8rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: white;
            opacity: 0.8;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-subscribe p {
            opacity: 0.8;
            margin-bottom: 1rem;
        }
        
        .subscribe-form {
            display: flex;
        }
        
        .subscribe-input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 0.9rem;
        }
        
        .subscribe-btn {
            padding: 0 1.2rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .subscribe-btn:hover {
            background-color: var(--secondary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0.5;
                transform: scale(1.1);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(15deg);
            }
            50% {
                transform: translateY(-10px) rotate(15deg);
            }
            100% {
                transform: translateY(0) rotate(15deg);
            }
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .nutrient-wheel {
                width: 500px;
                height: 500px;
            }
        }
        
        @media screen and (max-width: 992px) {
            .hero {
                grid-template-columns: 1fr;
                height: auto;
                min-height: 100vh;
            }
            
            .hero-image {
                clip-path: none;
                height: 50vh;
                order: -1;
            }
            
            .hero-content {
                padding: 4rem 5%;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .services-container {
                display: flex;
                flex-direction: column;
            }
            
            .service-card {
                margin-bottom: 2rem;
            }
            
            .nutrient-wheel {
                width: 400px;
                height: 400px;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .contact-map {
                clip-path: none;
                height: 400px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .hex-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .nutrient-wheel {
                width: 300px;
                height: 300px;
            }
            
            .wheel-center {
                width: 100px;
                height: 100px;
                font-size: 1rem;
            }
            
            .segment-content {
                width: 80px;
                right: 20px;
                top: 40px;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        .text-wrapper h2, .text-wrapper h3{
  margin-top: 20px;
  margin-bottom: 10px;
}

.text-wrapper h1{
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}
.text-wrapper h2{
  font-size: 1.5rem;
}

.text-wrapper{
  margin: 30px auto;
  max-width: 1200px;
}