        html, body {
    height: 100%;
	width: 100%;
    margin: 0;
    padding: 0;
	overflow-x: none;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
}

.nav-main {
    flex: 0 0 auto;
}

.hero {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent-color);
            color: white;
            padding: 5px 10px;
            font-size: 12px;
        }
		
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

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

.nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    margin: 18px;
    list-style: none;
}

.nav-links li {
    margin: 1 8px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #a98372;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-links li a:hover {
    color: #a98372;
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-icons {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            margin-top: 70px;
        }

        .hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.5s;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.7s;
        }

        /* Mission Section */
        .mission {
            padding: 100px 40px;
            background: var(--primary-color);
        }

        .mission-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mission-text {
            padding-right: 40px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .mission-description {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }

        .mission-image {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Values Section */
        .values {
            padding: 100px 40px;
            background: var(--background-color);
        }

        .values-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .value-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            font-size: 3rem;
            color: #745c5c;
            margin-bottom: 20px;
        }

        .value-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .value-description {
            color: #666;
        }

        /* Timeline Section */
        .timeline {
            padding: 100px 40px;
            background: var(--primary-color);
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: #ddd;
        }

        .timeline-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 100px;
            position: relative;
        }

        .timeline-content {
            width: 45%;
            padding: 30px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
        }

        .timeline-year {
            font-size: 1.5rem;
            font-weight: 900;
            color: #827474;
            margin-bottom: 15px;
        }

        /* Team Section */
        .team {
            padding: 100px 40px;
            background: var(--background-color);
        }

        .team-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .team-member {
            text-align: center;
        }

        .team-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .team-role {
            color: #666;
            font-size: 0.9rem;
        }

        /* Impact Section */
        .impact {
            padding: 100px 40px;
            background: #484543;
            color: #d3cdb6;
        }

        .impact-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .stat {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #888888;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
        }
		
		 @media (max-width: 1024px) {
            .mission-container,
            .values-grid,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .impact-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .mission-container,
            .values-grid,
            .team-grid,
            .impact-stats,
            .footer-container {
                grid-template-columns: 1fr;
            }

            .mission-image {
                height: 400px;
            }

            .timeline-item {
                flex-direction: column;
            }

            .timeline-content {
                width: 100%;
                margin-bottom: 30px;
            }

            .timeline-line {
                left: 20px;
            }
        }

		
		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }
       
	   :root {
            --primary-bg: #ffffff;
            --secondary-bg: #f5f5f5;
            --text-color: #111111;
            --accent-color: #9b9b99;
            --secondary-text: #757575;
            --hover-color: #e5e5e5;
        }

        .dark-mode {
            --primary-bg: #111111;
            --secondary-bg: #1a1a1a;
            --text-color: #ffffff;
            --secondary-text: #b0b0b0;
            --hover-color: #2d2d2d;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-color);
            line-height: 1.5;
        }

/* See More Button Styles */
.see-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.see-more .btn-primary {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.see-more .btn-primary:hover {
    background-color: #555;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-links {
    display: flex;
    justify-content: center; /* Center the list items horizontally */
    flex-grow: 1; /* Allow the nav-links to grow and take available space */
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-links li {
    margin: 0 5px; /* Space between list items */
}

.nav-links li a {
    text-decoration: none;
    color: #333; /* Original color */
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease; /* Smooth color transition */
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color:#a98372; /* Blue underline */
    transform-origin: bottom right;
    transition: transform 0.3s ease-out; /* Smooth underline transition */
}

.nav-links li a:hover {
    color: #a98372; /* Change text color on hover */
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-icons {
    display: flex;
    align-items: center;
}

/* Product Page Styles */
.product-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.product-images {
    flex: 1;
    margin-right: 20px;
}

.product-images img.main-img {
    width: 100%;
    height: auto;
}

.thumb-imgs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.thumb-imgs img {
    width: 32%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumb-imgs img:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 20px;
}

.product-options {
    margin-bottom: 20px;
}

.product-options label {
    display: block;
    margin-bottom: 5px;
}

.product-options select {
    padding: 5px;
    width: 100px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}


/* Product Page Styles */
.product-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.product-images {
    flex: 1;
    margin-right: 20px;
}

.product-images img.main-img {
    width: 100%;
    height: auto;
}

.thumb-imgs {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    margin-top: 10px;
    padding-bottom: 10px;
}

.thumb-imgs img {
    flex: 0 0 auto;
    width: 100px;
    height: auto;
    cursor: pointer;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.thumb-imgs img:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    color: #007bff;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 20px;
}

.product-options {
    margin-bottom: 20px;
}

.product-options label {
    display: block;
    margin-bottom: 5px;
}

.product-options select {
    padding: 5px;
    width: 100px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}





        /* Utility Classes */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--text-color);
            color: var(--primary-bg);
			text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--secondary-text);
        }

        /* Navigation */
        .top-bar {
            background: var(--secondary-bg);
            padding: 0.5rem 0;
            font-size: 0.8rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-main {
            background: var(--primary-bg);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 1.6rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
        }

        .nav-icons {
            display: flex;
            gap: 1.5rem;
        }

        /* Hero Section */
        .hero {
            height: 114vh;
            position: relative;
            overflow: hidden;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-title {
            font-size: 7.2em;
            margin-bottom: 1rem;
			font-weight: 800;
			line-height: 1em;
			letter-spacing: -0.02em;
			text-transform: capitalize;
			color: var(--light-color);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
		
		.site-banner{
			text-align: center;
		}
		.site-banner h1.hero{
			font-size: 7.2em;
			font-weight: 800;
			line-height: 1em;
			letter-spacing: -0.02em;
			text-transform: capitalize;
			color: var(--light-color);
		}
        /* Featured Section */
        .featured {
            padding: 4rem 0;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .featured-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .featured-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .featured-content {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            color: white;
        }

        /* Innovation Section */
        .innovation {
            background: var(--secondary-bg);
            padding: 1rem 0;
        }

        .innovation-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .innovation-text {
            padding: 2rem;
        }

        .innovation-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .innovation-img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Trending Section */
        .trending {
            padding: 4rem 0;
			gap: 2rem
        }

        .trending-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: var(--primary-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
		
        .product-img {
            width: 100%;
            height: 300px;
            object-fit: contain;
        }

        .product-info {
            padding: 1.5rem;
        }
		
		
        /* Membership Section */
        .membership {
            background: var(--text-color);
            color: var(--primary-bg);
            padding: 4rem 0;
            text-align: center;
        }

        .membership-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .membership-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .membership-card {
            padding: 2rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
        }

		.categories {
            padding: 4rem 2rem;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .category-card img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            text-align: center;
        }
		
		a.btn {
			display: inline-block;
			padding: 10px 20px;
			background-color: #333;
			color: #fff;
			text-align: center;
			text-decoration: none;
			border: none;
			cursor: pointer;
}

		a.btn:hover {
			background-color: #555;
}

        .btn-outline {
            border: 2px solid white;
            padding: 0.5rem 1.5rem;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            transition: var(--transition);
        }

        .btn-outline:hover {
            background: white;
            color: black;
        }
		
		.join-now-btn {
			margin-top: 20px; /* Adjust the value as needed for more or less space */
			display: inline-block;
		}



        .featured-products {
            padding: 4rem 2rem;
            background: var(--primary-light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
        }

        .product-slider {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

		
        .quick-view {
            background: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .product-card:hover .quick-view {
            transform: translateY(0);
        }


        .product-info {
            padding: 45px;
            text-align: center;
        }
		.product-price {
            font-weight: bold;
            color: #887272;
        }
		
		.product-link {
			text-decoration: none;
			color: inherit;
}

		.product-card {
			display: block;
			cursor: pointer;
}


        .price {
            color: var(--accent);
            font-weight: bold;
            margin: 0.5rem 0;
        }

        .product-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .add-to-cart {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
        }

        .add-to-wishlist {
            background: none;
            border: 1px solid var(--accent);
            color: var(--accent);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter {
            background: url('https://picsum.photos/3000/2000?random=6') center/cover;
            padding: 6rem 2rem;
            position: relative;
            color: white;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
        }

        .newsletter-content {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 25px;
        }
		
		/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

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

.nav-main {
    background-color: #f8f8f8;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav-links li {
    margin: 0 15px;
}

.main-nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav-links li a:hover {
    color: #ff5733f;
}

.page-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-links li {
    margin: 5px 10px; /* Adjust margin for mobile */
}

.page-links li a {
    text-decoration: none;
    color: #555;
    font-weight: normal;
    position: relative;
    transition: color 0.3s ease;
}

.page-links li a:hover {
    color: #ff5733;
}

.nav-icons {
    display: flex;
    align-items: center;
}



        /* Footer */
        .footer {
            background: var(--secondary-bg);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-links h4 {
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            line-height: 2;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--secondary-text);
            text-align: center;
            color: var(--secondary-text);
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .featured-grid {
                grid-template-columns: 1fr;
            }
			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding: 0;
				overflow-x: none;
				font-family: Arial, sans-serif;
				box-sizing: border-box;
			}
            .innovation-content {
                grid-template-columns: 1fr;
            }

            .membership-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.nav-links.show {
    display: flex;
}

        @media (max-width: 768px) {
            
			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding: 0;
				overflow-x: none;
				font-family: Arial, sans-serif;
				box-sizing: border-box;
			}
			
			.hero-title {
                font-size: 2.5rem;
            }

			.logo {
				order: 1;
				margin: 20px 0;
				text-align: center;
			}

            .main-nav-links {
                display: none;
            }
			
			.nav-container { 
				flex-direction: column; 
			}
			
            .container {
                padding: 10px;
            }

            .featured-img {
                height: 300px;
            }

            .innovation-img {
                height: 400px;
            }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu Button */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
        }
    
	
.mobile-menu {
    display: none;
}


/* Hero Section Styles */

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(70%);
}


/* Responsive Styles */
@media (max-width: 768px) {


    .main-nav-links li {
        margin: 10px 0;
    }
	.nav-icons{
		display: none; 
	}
    .mobile-menu {
        display: block;
    }

    .product-details {
        flex-direction: column;
    }

    .product-images, .product-info {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

        }
		
	   /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .featured-grid {
                grid-template-columns: 1fr;
            }
			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding: 0;
				overflow-x: none;
				font-family: Arial, sans-serif;
				box-sizing: border-box;
			}
            .innovation-content {
                grid-template-columns: 1fr;
            }

            .membership-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.nav-links.show {
    display: flex;
}

        @media (max-width: 768px) {
            
			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding: 0;
				overflow-x: none;
				font-family: Arial, sans-serif;
				box-sizing: border-box;
			}
			
			.hero-title {
                font-size: 2.5rem;
            }

			.logo {
				order: 1;
				margin: 20px 0;
				text-align: center;
			}

            .main-nav-links {
                display: none;
            }
			
			.nav-container { 
				flex-direction: column; 
			}
			
            .container {
                padding: 10px;
            }

            .featured-img {
                height: 300px;
            }

            .innovation-img {
                height: 400px;
            }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu Button */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
        }
    
	
.mobile-menu {
    display: none;
}





/* Hero Section Styles */

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(70%);
}


/* Responsive Styles */
@media (max-width: 768px) {


    .main-nav-links li {
        margin: 10px 0;
    }
	.nav-icons{
		display: none; 
	}
    .mobile-menu {
        display: block;
    }

    .product-details {
        flex-direction: column;
    }

    .product-images, .product-info {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
 .product-gallery {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

		