body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--light-green) 50%, var(--primary-green) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: logoPulse 3s infinite ease-in-out;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
    position: relative;
}

nav a:hover {
    color: var(--primary-green);
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 10% 5rem;
    min-height: 100vh;
    position: relative;
}

.hero-left {
    flex: 1;
    max-width: 400px;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

.hero-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-right {
    flex: 1;
    max-width: 400px;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 span {
    display: block;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 480px;
}

.btn-main {
    background: var(--dark-green);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-main: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: all 0.5s ease;
}

.btn-main:hover:before {
    left: 100%;
}

.product-img {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.product-img img {
    width: 80%;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.product-img:hover img {
    transform: scale(1.05);
}

@keyframes fadeInLeft {
    0% { 
        opacity: 0;
        transform: translateX(-50px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% { 
        opacity: 0;
        transform: translateX(50px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating text animation */
.floating-text {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(26, 92, 58, 0.7);
    animation: floatText 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatText {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Services Section */
.services {
    padding: 5rem 10%;
    background: rgba(255, 255, 255, 0.5);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
    background: rgba(255, 255, 255, 0.5);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Product Categories */
.product-categories {
    padding: 5rem 10%;
    text-align: center;
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.category-option {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.category-option:hover {
    transform: scale(1.1);
}

.category-option.active {
    border-color: var(--gold);
    transform: scale(1.1);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

/* Stats Section */
.stats {
    padding: 5rem 10%;
    background: rgba(255, 255, 255, 0.5);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1rem;
}

/* Clients Section */
.clients {
    padding: 3rem 10%;
    text-align: center;
}

.clients h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.client-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: 0.3s;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.client-links a:hover {
    color: var(--primary-green);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    background: var(--dark-green);
    color: white;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .product-img {
        width: 350px;
        height: 350px;
        order: 2;
    }
    
    .hero-left {
        order: 1;
        max-width: 100%;
    }
    
    .hero-right {
        order: 3;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .client-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .product-img {
        width: 300px;
        height: 300px;
    }
    
    .floating-text {
        font-size: 1.2rem;
    }
    
    .category-option {
        width: 120px;
        height: 120px;
    }
}



.product-display {
  padding: 6rem 10%;
  position: relative;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease;
}

.product-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.6s ease;
}
.product-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

.product-details {
  flex: 1 1 400px;
}
.product-details h2 {
  font-size: 2.2rem;
  color: var(--dark-green);
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-details p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.product-features li {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.product-features i {
  color: var(--primary-green);
  margin-right: 10px;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(40px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 992px) {
  .product-container {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .product-image img {
    max-width: 350px;
  }
}

/* Custom styles for the fancy dropdown */
    .dropdown-menu {
      border: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      border-radius: 12px;
      padding: 0.5rem;
      min-width: 240px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      transform: translateY(10px);
      opacity: 0;
      transition: all 0.3s ease;
      display: block;
    }
    
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      transform: translateY(0);
    }
    
    .dropdown-item {
      border-radius: 8px;
      padding: 0.75rem 1rem;
      margin-bottom: 0.25rem;
      display: flex;
      align-items: center;
      transition: all 0.2s ease;
      font-weight: 500;
    }
    
    .dropdown-item:hover {
      background: linear-gradient(135deg, #6ccf85, #2fa36a);
      color: white;
      transform: translateX(5px);
    }
    
    .dropdown-item i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
    }
    
    .dropdown-divider {
      margin: 0.5rem 0;
    }
    
    .dropdown-header {
      font-weight: 700;
      color: #165a37;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0.75rem 1rem 0.25rem;
    }

    /* YouTube-style Hamburger Menu */
    .navbar-toggler {
      border: none;
      background: transparent;
      padding: 0;
      width: 24px;
      height: 24px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
    }
    
    .navbar-toggler span {
      display: block;
      height: 2px;
      width: 100%;
      background-color: white;
      border-radius: 1px;
      transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }
    
    