* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

body {
    perspective: 1000px;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: #f5f5f5;
}


      .nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(44, 119, 68, 0.15);
    border-bottom: 1px solid rgba(74, 190, 116, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    width: 90px; 
    height: 170px; 
    object-fit: contain; 
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #2c7744;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}

.nav-links a i {
    font-size: 17px;
}

.nav-links a:hover {
    background: linear-gradient(135deg, #2c7744, #4abe74);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 119, 68, 0.2);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 119, 68, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2c7744;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active {
    background: #2c7744;
    box-shadow: 0 0 15px rgba(44, 119, 68, 0.3);
}

.mobile-menu-btn.active .menu-icon span {
    background: white;
}

.mobile-menu-btn.active .menu-icon span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2c7744, #4abe74);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-links {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.mobile-links a {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 80%;
    max-width: 280px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.mobile-links a i {
    font-size: 18px;
}

.mobile-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .logo img {
        width: 80px;
        height: 150px;
    }
    
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }
    
    .nav-container {
        height: 60px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap');
        
.hero {
  position: relative;
  min-height: 450px;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #2c7744, #3a9d5d, #4abe74);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(circle at 25px 25px, white 2%, transparent 2%);
  background-size: 50px 50px;
}

.hero-accent {
  position: absolute;
  border-radius: 50%;
}

.accent-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -150px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}

.accent-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.hero-content {
  max-width: 900px;
  width: 100%;
  color: white;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.brand-container {
  margin-bottom: 35px;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  background: linear-gradient(to right, #ffffff 60%, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.brand-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 0;
  width: 180px;
}

.brand-line {
  height: 2px;
  flex-grow: 1;
  background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.8);
  margin: 0 8px;
}

.hero-text-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 35px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text-wrapper::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
  border-radius: 2px;
}

.hero-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.hero-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin: 0 auto;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero {
    padding: 50px 15px;
    min-height: 350px;
  }
  
  .brand-name {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
  
  .hero-text-wrapper {
    padding: 30px 20px;
  }
  
  .hero-tagline {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .brand-decoration {
    width: 140px;
    margin: 8px auto 0;
  }
}
       .description1 {
  display: flex;
  align-items: center; /* Vertically center the items */
  justify-content: center; /* Center the items horizontally */
  padding: 25px; /* Reduced padding */
  max-width: 950px; /* Reduced max-width for a smaller box */
  margin: 30px auto; /* Center the section with less margin */
  background: linear-gradient(135deg, #2c7744, #4abe74); /* Green gradient to match hero */
  border-radius: 20px; /* Smooth rounded corners */
  box-shadow: 0 5px 15px rgba(44, 119, 68, 0.35); /* Green-tinted shadow */
  position: relative;
}

.description-image1 {
  display: flex;
  justify-content: center; /* Center the image */
  margin-left: 20px; /* Space between image and text */
}

.description-image1 img {
  width: 250px; /* Smaller width for the image */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Adds rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
}

.description-text1 {
  color: #ffffff;
  max-width: 700px; /* Reduced max-width */
  text-align: left; /* Align text to the left */
}

.description-text1 h2 {
  font-family: 'Montserrat', sans-serif; /* Changed to match hero font */
  font-weight: 700; /* Bold weight instead of italic */
  color: #ffffff;
  font-size: 2.4rem; /* Smaller title size */
  margin-bottom: 12px; /* Slightly increased margin */
  line-height: 1.2;
}

.description-text1 p {
  font-family: 'Roboto', sans-serif; /* Changed to match hero font */
  color: rgba(255, 255, 255, 0.9); /* Slightly softer white */
  font-size: 1.1rem; /* Smaller font size for the paragraph */
  line-height: 1.6; /* Better line spacing */
  white-space: normal; /* Allow text to wrap */
  overflow: visible;
  margin: 0; /* Remove default margin */
}

@media (max-width: 768px) {
  .description1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85%; /* Small but not too small */
    max-width: 480px; /* Control card width */
    min-height: 100px; /* Moderate height */
    padding: 20px; /* Slightly increased padding for better spacing */
    margin: 40px auto; /* Center the card */
    border-radius: 16px; /* Reduced border radius for more modern look */
  }
  
  .description-image1 {
    margin-left: 0; /* Remove left margin on mobile */
    margin-bottom: 15px; /* Add space below the image on mobile */
  }

  .description-text1 {
    margin-left: 0; /* Remove left margin */
    text-align: center; /* Center text on mobile */
    max-width: 100%; /* Allow full width on mobile */
  }

  .description-text1 h2 {
    font-size: 1.8rem; /* Slightly larger title size for mobile */
    margin-bottom: 10px; /* Space after heading */
  }

  .description-text1 p {
    font-size: 1rem; /* Slightly larger text size for better readability */
    padding: 0 10px; /* Add some padding for spacing */
  }

  .description-image1 img {
    width: 90%; /* Responsive width for mobile image */
    max-width: 280px;
    margin-top: 15px; /* Reduced space above image */
  }
}
          

        .recipe-section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            text-align: center;
            color: #349706;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #349706, #349706);
            border-radius: 3px;
        }
        
        .recipe-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin: 0 auto;
        }
        
        .recipe-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            background: white;
            box-shadow: 0 8px 16px rgba(108, 92, 231, 0.1);
            transition: all 0.3s ease;
            height: 310px;
            text-decoration: none;
            display: block;
        }
        
        .recipe-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(108, 92, 231, 0.2);
        }
        
        .card-image-wrapper {
            position: relative;
            height: 230px;
            overflow: hidden;
        }
        
        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .recipe-card:hover .card-image-wrapper img {
            transform: scale(1.1);
        }
        
        .recipe-count {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #349706;
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            backdrop-filter: blur(5px);
        }
        
        .card-content {
            padding: 20px;
            background: white;
        }
        
        .card-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #349706;
        }
        
        .card-content p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.4;
        }
        
        @media (max-width: 1024px) {
            .recipe-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .recipe-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            .recipe-card {
                height: 300px;
            }
            .card-image-wrapper {
                height: 200px;
            }
        }


    .footer {
    background: linear-gradient(to right, #2c7744, #4abe74);
    padding: 40px 20px 20px;
    color: white;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(44, 119, 68, 0.15);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 15px;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
}

.copyright {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.version {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 15px 15px;
    }

    .footer-nav {
        gap: 10px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 8px;
    }

    .nav-link {
        width: 100%;
        padding: 10px;
        border-radius: 6px;
    }
}
        
        .grid-container2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
                  .grid-container2 {
                max-width: 1400px;
                margin: 0 auto;
                padding: 20px;
            }
            
            .title2 {
                text-align: center;
                margin-bottom: 40px;
                font-size: 32px;
                color: #2d3436;
                font-family: 'Poppins', sans-serif;
                position: relative;
                padding-bottom: 15px;
            }
            
            .title2::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
                height: 3px;
                background: #6c5ce7;
            }
            
            .recipe-grid2 {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
                margin-bottom: 30px;
            }
            
            .recipe-link2 {
                text-decoration: none;
                color: inherit;
                display: block;
            }
            
.recipe-grid2 {
    display: grid;
    gap: 12px;
    justify-content: center;
}

/* Default card styling */
.recipe-card2 {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    background: white;
    position: relative;
    cursor: pointer;
    max-width: 280px;
    margin: auto;
}

/* Hover effect for desktop */
.recipe-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.15);
}

/* Image adjustments */
.recipe-card2 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card2:hover img {
    transform: scale(1.05);
}

.recipe-content2 {
    padding: 10px;
    text-align: center;
}

.recipe-title2 {
    font-size: 16px;
    margin: 0 0 6px 0;
    color: #3e9b00;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.recipe-description2 {
    font-size: 13px;
    color: #585858;
    margin: 0;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.recipe-info2 {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #eee;
    font-size: 11px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

/* MOBILE ANIMATION */
@media (max-width: 600px) {
    .recipe-card2 {
        transform: scale(0.8);
        opacity: 0;
        animation: popIn 0.6s ease-out forwards;
    }
}

/* Animation Keyframes */
@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Centering the cards in mobile */
@media (max-width: 600px) {
    .recipe-grid2 {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

            .hero1 {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 80px 20px;
                background: linear-gradient(to bottom, #389457 , #56a570); /* Soft warm gradient */
                animation: fadeIn 1.5s ease-in-out;
            }
            
            .hero-content1 {
                max-width: 50%;
                text-align: left;
                padding-left: 10%; 

            }
            
            .hero-title1 {
                font-size: 2.5rem;
            
                font-family: 'Poppins', sans-serif;
                color: #ffffff;
                max-width: 700px;
                font-weight: bold;
                line-height: 1.6;
                animation: fadeIn 1.5s ease-in-out;
            }
            
            .hero-subtitle1 {
                font-size: 1.3rem;
                font-family: 'Poppins', sans-serif;
                color: #ffffff;
                max-width: 700px;
                font-weight: normal;
                line-height: 1.6;
                animation: fadeIn 1.5s ease-in-out;
            }
            
            .hero-description1 {
                font-size: 1.4rem;
                color: #ffffff;
                margin: 0;
                animation: fadeIn 1.5s ease-in-out;
            }
            
            .hero-image1 {
                max-width: 76%;
                text-align: right;
                padding-right: 6%;
            }
            
            .hero-image1 img {
                width: 50%;
                max-width: 600px;
                height: auto;
                animation: bounceUpDown 3s infinite ease-in-out; /* Slow, smooth animation */
            }
            
            /* Keyframe Animation for Smooth Bouncing */
            @keyframes bounceUpDown {
                0% { transform: translateY(0); } 
                50% { transform: translateY(-15px); } /* Moves up */
                100% { transform: translateY(0); } /* Moves back to original position */
            }
            
            
            /* Responsive Design */
            @media (max-width: 768px) {
                .hero1 {
                    flex-direction: column;
                    align-items: center; /* Ensures everything is centered */
                    text-align: center;
                }
            
                .hero-content1, .hero-image1 {
                    max-width: 100%;
                    width: 100%; /* Ensures full width */
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    align-items: center; /* Centers content properly */
                }
            
                .hero-title1 {
                    font-size: 2.2rem;
                    text-align: center;
                }
            
                .hero-subtitle1 {
                    font-size: 1.2rem;
                    text-align: center;
                }
            
                .hero-description1 {
                    font-size: 1.2rem;
                    text-align: center;
                }
            
                .hero-image1 img {
                    width: 50%;
                    max-width: 300px; /* Adjust size to fit screen */
                    height: auto;
                }
            }
           
                 
            .hero2 {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 80px 20px;
                background: linear-gradient(to bottom, #389457 , #56a570); /* Soft warm gradient */
                animation: fadeIn 1.5s ease-in-out;
            }
            
            .hero-content2 {
                max-width: 50%;
                text-align: left;
                padding-left: 10%; 

            }
            
            .hero-title2 {
                font-size: 2.5rem;
            
                font-family: 'Poppins', sans-serif;
                color: #ffffff;
                max-width: 700px;
                font-weight: bold;
                line-height: 1.6;
                animation: fadeIn 1.5s ease-in-out;
            }
            
            .hero-subtitle2 {
                font-size: 1.3rem;
                font-family: 'Poppins', sans-serif;
                color: #ffffff;
                max-width: 700px;
                font-weight: normal;
                line-height: 1.6;
                animation: fadeIn 1.5s ease-in-out;
            }
            
            .hero-description2 {
                font-size: 1.4rem;
                color: #ffffff;
                margin: 0;
                animation: fadeIn 1.5s ease-in-out;
            }
            
            .hero-image2 {
                max-width: 76%;
                text-align: right;
                padding-right: 6%;
            }
            
            .hero-image2 img {
                width: 50%;
                max-width: 600px;
                height: auto;
                animation: bounceUpDown 3s infinite ease-in-out; /* Slow, smooth animation */
            }
            
            /* Keyframe Animation for Smooth Bouncing */
            @keyframes bounceUpDown {
                0% { transform: translateY(0); } 
                50% { transform: translateY(-15px); } /* Moves up */
                100% { transform: translateY(0); } /* Moves back to original position */
            }
            
            
            /* Responsive Design */
            @media (max-width: 768px) {
                .hero2 {
                    flex-direction: column;
                    align-items: center; /* Ensures everything is centered */
                    text-align: center;
                }
            
                .hero-content2, .hero-image2 {
                    max-width: 100%;
                    width: 100%; /* Ensures full width */
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    align-items: center; /* Centers content properly */
                }
            
                .hero-title2 {
                    font-size: 2.2rem;
                    text-align: center;
                }
            
                .hero-subtitle2 {
                    font-size: 1.2rem;
                    text-align: center;
                }
            
                .hero-description2 {
                    font-size: 1.2rem;
                    text-align: center;
                }
            
                .hero-image2 img {
                    width: 80%;
                    max-width: 300px; /* Adjust size to fit screen */
                    height: auto;
                }
            }
           

 .reviews-section {
    padding: 80px 20px;
    background-color: #f9f5ff;
    position: relative;
    overflow: hidden;
  }
  
  .reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(147, 107, 217, 0.05) 0%, transparent 60%),
                      radial-gradient(circle at 90% 80%, rgba(147, 107, 217, 0.07) 0%, transparent 60%);
    z-index: 0;
  }
  
  .reviews-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  
 
  
  .title-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100px;
  }
  
  .accent-line {
    height: 2px;
    flex-grow: 1;
    background: linear-gradient(to right, transparent, #389457, transparent);
  }
  
  .accent-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #389457;
    margin: 0 8px;
  }
  
  .reviews-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .review-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    max-width: 320px;
    position: relative;
    box-shadow: 0 10px 30px rgba(147, 107, 217, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 107, 217, 0.1);
  }

  .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(147, 107, 217, 0.15);
    border-color: rgba(147, 107, 217, 0.2);
  }
  
  .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .review-img-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  
  .review-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .review-img-outline {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(147, 107, 217, 0.3);
    z-index: 1;
  }
  
  .review-identity {
    flex-grow: 1;
  }
  
  .review-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 5px;
  }
  
  .stars {
    color: #ffb700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    line-height: 1;
  }
  
  .review-quote-mark {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: rgba(147, 107, 217, 0.1);
    line-height: 0;
  }
  
  .review-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
    min-height: 110px;
  }
  
  .reviews-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(147, 107, 217, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .nav-dot.active {
    background-color: #61be45;
    transform: scale(1.2);
  }
  
  /* Responsive Styles */
  @media (min-width: 769px) {
    .reviews-container {
      overflow: visible;
    }
    
    .reviews-nav {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .reviews-section {
      padding: 60px 15px;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .reviews-container {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 10px 15px;
      margin: 0 -15px;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }
    
    .review-card {
      flex: 0 0 auto;
      width: 85%;
      scroll-snap-align: center;
      margin-right: 5px;
    }
    
    .reviews-container::-webkit-scrollbar {
      display: none;
    }
    
    .reviews-container {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  }


.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    text-align: center;
}

.pagination button {
    padding: 12px 18px;
    border: none;
    border-radius: 25px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #6B7280, #1F2937);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pagination button:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.pagination button:disabled {
    opacity: 0.5;
    filter: grayscale(70%);
    cursor: not-allowed;
}

#prev {
    background: linear-gradient(135deg, #D1D5DB, #9CA3AF);
    color: #1F2937;
}

#next {
    background: linear-gradient(135deg, black, #374151);
    color: white;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px; /* ✅ Added padding for better spacing on small screens */
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 30px 0 40px; /* ✅ Adjusted margin for better spacing */
}

.recipe-button {
    position: relative;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, #2d7a2d, #339933);
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(45, 122, 45, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    width: 150px;
    text-decoration: none;
    text-align: center;
    min-height: 40px; /* ✅ Ensures button height consistency */
}

.recipe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(45, 122, 45, 0.4);
    background: linear-gradient(145deg, #339933, #40a040);
}

.recipe-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(45, 122, 45, 0.3);
}

.recipe-button::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: 0.5s;
}

.recipe-button:hover::before {
    left: 100%;
}

.recipe-button svg {
    width: 16px;
    height: 16px;
    fill: white;
    transition: transform 0.3s ease;
}

.recipe-button:hover svg {
    transform: scale(1.1);
}
  
.main-content {
    display: flex;
    flex-direction: row; /* Image left, card right */
    justify-content: center; /* Centers content */
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    margin-top: 20px;
    flex-wrap: wrap; /* Allows elements to wrap on small screens */
}

.profile-card {
    background: rgb(240, 238, 238);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(45, 122, 45, 0.1);
    text-align: center;
    width: 400px;
    flex-shrink: 0;
    position: relative;
    left: 0; 
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #66cc66;
    margin: 0 auto 15px;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    color: #2d7a2d;
    margin: 10px 0;
}

.profile-bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2d7a2d, #339933);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: linear-gradient(145deg, #66cc66, #7acc7a);
}

.recipe-image-container {
    flex: 1;
    min-width: 220px;
    max-width: 600px;
    position: relative;
    order: -1; /* Moves image to the left */
    margin-left: 10%; /* ✅ Removed excessive margin */
}

.recipe-image-container1 {
    flex: 1;
    min-width: 220px;
    max-width: 600px;
    position: relative;
    order: -1; /* Moves image to the left */
    margin-left: 30%; /* ✅ Removed excessive margin */
}
.recipe-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(45, 122, 45, 0.2);
    transition: all 0.5s ease;
}
.pin-it-button {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e60023;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pin-it-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-size: 32px;
    color: #2d7a2d;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

/* ✅ Fixed mobile responsiveness */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .profile-card {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px; /* Optional: Adds space between cards */
    }
    .recipe-image-container1{
        width: 100%;
        max-width: 300px; /* Ensures the image container doesn't stretch too wide */
        display: flex;
        justify-content: center; /* Centers the image container */
        align-items: center; /* Centers vertically */
        margin: 0 auto; /* Ensures the container stays centered */
    }
    .recipe-image-container {
        width: 100%;
        max-width: 300px; /* Ensures the image container doesn't stretch too wide */
        display: flex;
        justify-content: center; /* Centers the image container */
        align-items: center; /* Centers vertically */
        margin: 0 auto; /* Ensures the container stays centered */
    }

    .recipe-image-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto; /* Centers the image */
        object-fit: contain; /* Ensures the image stays centered without distortion */
        border-radius: 15px; /* Optional: Adds rounded corners */
        box-shadow: 0 15px 30px rgba(117, 48, 134, 0.2); /* Optional: Adds a shadow for aesthetics */
        transition: all 0.5s ease; /* Optional: Adds smooth transition effects */
    }

    .profile-card {
        margin-top: 20px;
        max-width: 400px;
    }

    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; /* ✅ Consistent gap */
        margin: 20px 0 30px;
    }

    .recipe-button {
        width: 140px; /* ✅ Same width */
        height: 40px; /* ✅ Ensures all buttons are the same height */
        font-size: 13px;
        padding: 8px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap; /* ✅ Prevents text wrapping */
    }

    .recipe-button svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0; /* ✅ Prevents icon from shrinking */
    }

    .recipe-description {
        width: 90%; /* Ensure it takes up most of the screen */
        max-width: 600px; /* Optional: You can adjust this */
        background: white;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(117, 48, 134, 0.1);
        text-align: left;
        color: #2d7a2d;
        font-size: 16px;
        line-height: 1.6;
        margin-top: -15px; /* Negative margin to move it up significantly */
        margin-left: auto; /* Centers the element */
        margin-right: auto; /* Centers the element */
        position: relative; /* Added position relative */
        z-index: 1; /* Ensures it displays properly */
    }
}

.recipe-container21 {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.recipe-image21 {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}



.section-header21 h2 {
  position: relative;
  padding-left: 20px;
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.section-header21 h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 8px;
  background-color: #2d7a2d;
  border-radius: 4px;
}

ul {
  list-style-type: none;
  padding-left: 5px;
  margin-bottom: 30px;
}

li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2d7a2d;
  font-weight: bold;
  font-size: 18px;
}

strong {
  font-weight: bold;
}

.step21 {
  margin-bottom: 15px;
}

.step-title21 {
  color: #2d7a2d;
  font-weight: bold;
  margin-bottom: 5px;
}

.step-description21 {
  line-height: 1.6;
}

.recipe-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.recipe-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.recipe-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}



.section-header h2 {
    position: relative;
    padding-left: 20px;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.section-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 8px;
    background-color: #2d7a2d;
    border-radius: 4px;
}

ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 30px;
}

li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d7a2d;
    font-weight: bold;
    font-size: 18px;
}

strong {
    font-weight: bold;
}

.step {
    margin-bottom: 15px;
}

.step-title {
    color: #2d7a2d;
    font-weight: bold;
    margin-bottom: 5px;
}

.step-description {
    line-height: 1.6;
}

.recipe-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.recipe-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.section-header h2 {
    position: relative;
    padding-left: 20px;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.section-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 8px;
    background-color: #2d7a2d;
    border-radius: 4px;
}

ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 30px;
}

li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d7a2d;
    font-weight: bold;
    font-size: 18px;
}

strong {
    font-weight: bold;
}

.step {
    margin-bottom: 15px;
}

.step-title {
    color: #2d7a2d;
    font-weight: bold;
    margin-bottom: 5px;
}

.step-description {
    line-height: 1.6;
}

.recipe-card22 {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 122, 45, 0.2);
    padding: 30px;
    margin: 0 auto;
    border-top: 5px solid #2d7a2d;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    max-width: 700px; /* Medium size - not too small, not too large */
    background-color: #f1f8f1;
    color: #333;
}

.recipe-card22::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(102, 204, 102, 0.2), transparent 70%);
    z-index: 0;
}

.recipe-header22 {
    text-align: center;
    color: #2d7a2d;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; /* Nice large title */
    position: relative;
}

.recipe-header22::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #2d7a2d, #7acc7a);
    margin: 10px auto 0;
}
.section-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 8px;
    background-color: #2d7a2d;
    border-radius: 4px;
}

ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 30px;
}

li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d7a2d;
    font-weight: bold;
    font-size: 18px;
}

strong {
    font-weight: bold;
}

.step {
    margin-bottom: 15px;
}

.step-title {
    color: #2d7a2d;
    font-weight: bold;
    margin-bottom: 5px;
}

.step-description {
    line-height: 1.6;
}

.recipe-card22 {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 122, 45, 0.2);
    padding: 30px;
    margin: 0 auto;
    border-top: 5px solid #2d7a2d;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    max-width: 700px; /* Medium size - not too small, not too large */
    background-color: #f1f8f1;
    color: #333;
}

.recipe-card22::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(102, 204, 102, 0.2), transparent 70%);
    z-index: 0;
}

.recipe-header22 {
    text-align: center;
    color: #2d7a2d;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; /* Nice large title */
    position: relative;
}

.recipe-header22::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #2d7a2d, #7acc7a);
    margin: 10px auto 0;
}

.recipe-description22 {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.recipe-metadata22 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.metadata-item22 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(145deg, #7acc7a 0%, #66cc66 100%);
    box-shadow: 0 5px 15px rgba(45, 122, 45, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metadata-item22::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #2d7a2d, #7acc7a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metadata-item22:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(102, 204, 102, 0.15);
}

.metadata-item22:hover::before {
    transform: scaleX(1);
}

.recipe-metadata22 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    border-top: 1px solid #4d9c4d;
    border-bottom: 1px solid #4d9c4d;
    padding: 15px 0;
}

.metadata-item22 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 5px;
    background: transparent;
    box-shadow: none;
    text-align: left;
    position: relative;
    border-radius: 0;
}

.metadata-item22::before {
    display: none;
}

.metadata-item22:hover {
    transform: none;
    box-shadow: none;
}

.metadata-icon22 {
    margin-right: 8px;
    margin-bottom: 0;
    color: #1a6e1a;
    width: 20px;
    height: 20px;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.metadata-title22 {
    font-weight: 600;
    color: #2d7a2d;
    margin-right: 5px;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    display: inline;
}

.metadata-value22 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #66b366;
    display: inline;
}

.section-title22 {
    color: #2d7a2d;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid #7acc7a;
    padding-bottom: 10px;
    margin-top: 40px;
    font-size: 1.8rem;
    position: relative;
}

.section-header22 {
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #2d7a2d;
    font-size: 1.3rem;
}

.list-container22 {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(45, 122, 45, 0.08);
    margin-bottom: 30px;
}

.ingredient-item22, .instruction-step22 {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ingredient-item22 {
    background: linear-gradient(to right, #f1f8f1, #f4faf4);
}

.instruction-step22 {
    background: linear-gradient(to right, #f1f8f1, #f4faf4);
}

.ingredient-item22:hover, .instruction-step22:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(45, 122, 45, 0.1);
}

.ingredient-item22::after, .instruction-step22::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #2d7a2d, #7acc7a);
    transition: width 0.3s ease;
    z-index: -1;
}

.ingredient-item22:hover::after, .instruction-step22:hover::after {
    width: 100%;
}.ingredient-number22, .step-number22 {
    background: linear-gradient(135deg, #2d7d32, #4caf50);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(45, 125, 50, 0.3);
    flex-shrink: 0;
}

.ingredient-text22, .instruction-text22 {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.5;
}

.completed22 {
    background: linear-gradient(to right, #c8e6c9, #a5d6a7);
    text-decoration: line-through;
    color: #2d7d32;
}

.completed22 .ingredient-number22, .completed22 .step-number22 {
    background: linear-gradient(135deg, #66bb6a, #81c784);
    opacity: 0.8;
}

/* Recipe image */
.recispe-image22 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(45, 125, 50, 0.2);
}

/* Progress bar */
.progress-container22 {
    width: 100%;
    height: 10px;
    background-color: #e8f5e8;
    border-radius: 5px;
    margin: 30px 0 10px;
    overflow: hidden;
}

.progress-bar22 {
    height: 100%;
    background: linear-gradient(to right, #2d7d32, #81c784);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 5px;
}

.progress-text22 {
    text-align: center;
    color: #2d7d32;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Tips container */
.tips-container22 {
    background: linear-gradient(145deg, #f1f8e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(45, 125, 50, 0.08);
}

.tips-header22 {
    display: flex;
    align-items: center;
    color: #2d7d32;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tips-header22 svg {
    margin-right: 10px;
}

.tip-item22 {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.tip-item22::before {
    content: "•";
    color: #81c784;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* Tips container 223 */
.tips-container223 {
    background: linear-gradient(145deg, #f1f8e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(45, 125, 50, 0.08);
}

.tips-header223 {
    display: flex;
    align-items: center;
    color: #2d7d32;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tips-header223 svg {
    margin-right: 10px;
}

.tip-item223 {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.tip-item223::before {
    content: "•";
    color: #81c784;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* Rating stars */
.rating-container22 {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.star22 {
    color: #d3d3d3;
    font-size: 30px;
    padding: 0 5px;
    cursor: pointer;
}

.star22.active22 {
    color: #81c784;
}

/* Print button */
.print-button22 {
    background: linear-gradient(to right, #2d7d32, #4caf50);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(45, 125, 50, 0.3);
}

.print-button22:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(117, 48, 134, 0.4);
}

.print-button22 svg {
    margin-right: 8px;
}
/* Balanced mobile recipe card styling */
@media (max-width: 480px) {
    .recipe-card22 {
      width: 100%;
      max-width: 900px;
      margin: 25px auto;
      padding: 18px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(117, 48, 134, 0.15);
    }
    
    /* Properly sized header */
    .recipe-header22 {
      font-size: 1.7rem;
      line-height: 1.3;
      margin-bottom: 12px;
    }
    
    .recipe-header22::after {
      width: 70px;
      height: 3px;
      margin: 8px auto 0;
    }
    
    /* Balanced description text */
    .recipe-description22 {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 20px;
    }
    
    /* Moderately sized image */
    .recispe-image22 {
      width: 140px;
      height: 140px;
      margin: 0 auto 15px;
    }
    
    /* Two column metadata on phones */
    .recipe-metadata22 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 12px 0;
    }
    
    .metadata-item22 {
      padding: 10px;
      min-height: auto;
    }
    
    .metadata-icon22 {
      width: 20px;
      height: 20px;
    }
    
    .metadata-title22 {
      font-size: 0.9rem;
    }
    
    .metadata-value22 {
      font-size: 0.9rem;
    }
    
    /* Ingredient and instruction items */
    .ingredient-item22, .instruction-step22 {
      padding: 12px;
      margin: 8px 0;
    }
    
    .ingredient-number22, .step-number22 {
      width: 36px;
      height: 36px;
    }
    
    .ingredient-text22, .instruction-text22 {
      font-size: 1rem;
    }
    
    /* Keep decorative elements but optimize them */
    .recipe-card22::before {
      width: 100px;
      height: 100px;
      opacity: 0.6;
    }
    
    /* Ensure proper spacing */
    .section-title22 {
      font-size: 1.5rem;
      margin-top: 25px;
    }
    
    /* Fix any possible overflow issues */
    * {
      max-width: 100%;
    }
  }
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    margin-right: 15px;
    margin-top: 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  
  /* Primary Button - Discover Recipes */
  /* Primary Button - Updated to Green Theme */
.btn-primary {
    background-color: #ffffff;
    color: #27ae60;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
    border: 2px solid #27ae60;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #27ae60;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
}

/* Secondary Button - Browse Categories */
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1); }
}
/* Header section - Updated to Green Theme */
.chef-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fff8, #ffffff);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(39, 174, 96, 0.1);
}

.chef-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

/* Profile Image - Updated to Green Theme */
.profile-image1 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #27ae60;
    object-fit: cover;
    margin: 0 auto 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.2);
}

.profile-image1:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(39, 174, 96, 0.4);
    border-color: #2ecc71;
}

/* Chef Name - Updated to Green Theme */
.chef-name {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(39, 174, 96, 0.1);
}

.chef-name:hover {
    color: #229954;
}

/* Chef Tagline */
.chef-tagline {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Social Icons - Updated to Green Theme */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.5);
    background: linear-gradient(135deg, #229954, #27ae60);
}

/* Additional Green Accent Elements */
.green-accent {
    border-left: 4px solid #27ae60;
    padding-left: 15px;
}

.green-highlight {
    background-color: rgba(39, 174, 96, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

/* Green Button Variants */
.btn-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #229954, #27ae60);
}
/* Bio section with special background and chef image */
.chef-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.1);
    position: relative;
    overflow: hidden;
}
   
.chef-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #2e8b57, #ff6b8b);
}
   
.chef-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
   
.chef-icon {
    font-size: 48px;
    color: #2e8b57;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
   
.chef-title {
    color: #3cb371;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
    animation: fadeIn 1s ease-in;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
   
.chef-subtitle {
    color: #ffffff;
    background: linear-gradient(to right, #2e8b57, #3cb371);
    padding: 8px 25px;
    border-radius: 30px;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(46, 139, 87, 0.3);
    animation: slideIn 1s ease-out;
}
   
.chef-profile {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 1.2s ease-out;
    display: flex;
    flex-direction: column;
}
   
@media (min-width: 768px) {
    .chef-profile {
        flex-direction: row;
    }
}
   
.chef-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
}
   
.chef-image-container {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}
   
@media (min-width: 768px) {
    .chef-image-container {
        width: 35%;
    }
}
   
@media (max-width: 767px) {
    .chef-image-container {
        height: 250px;
    }
}
   
.chef-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
   
.chef-profile:hover .chef-image {
    transform: scale(1.05);
}
   
.chef-info {
    flex: 1;
    padding: 25px;
}
   
.chef-name {
    color: #3cb371;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}
   
.chef-role {
    color: #ff6b8b;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}
   
.chef-bio {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}
   
.chef-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
   
.chef-stat {
    background-color: #f5fff9;
    border-radius: 8px;
    padding: 10px 15px;
    flex: 1;
    min-width: 100px;
    text-align: center;
}
   
.chef-stat-number {
    color: #2e8b57;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}
   
.chef-stat-label {
    font-size: 14px;
    color: #666;
}
  
  .chef-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
   
.chef-specialty {
    background: linear-gradient(to right, #2e8b57, #ff6b8b);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    transition: transform 0.3s ease;
}
   
.chef-specialty:hover {
    transform: translateY(-3px);
}
   
.chef-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
   
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #2e8b57, #3cb371);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.3s ease;
}
   
.social-icon:hover {
    transform: translateY(-3px);
}
   
.purple-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #2e8b57, #ff6b8b);
    margin: 30px auto;
    border-radius: 2px;
    animation: expand 1.5s ease-out;
    position: relative;
}
   
.purple-divider::before, .purple-divider::after {
    content: "•";
    position: absolute;
    top: -8px;
    color: #2e8b57;
    font-size: 20px;
}
   
.purple-divider::before {
    left: -10px;
}
   
.purple-divider::after {
    right: -10px;
}
   
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
   
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
   
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
   
@keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
   
@keyframes expand {
    from { width: 0; }
    to { width: 120px; }
}
   
/* Responsive adjustments */
@media (max-width: 767px) {
    .chef-title {
        font-size: 32px;
    }
       
    .chef-subtitle {
        font-size: 16px;
    }
       
    .chef-name {
        font-size: 24px;
    }
       
    .chef-role {
        font-size: 16px;
    }
}

.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #e8f5e9, #dcedc8); /* light green gradient, keeping as is */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(56, 142, 60, 0.1); /* green shadow, keeping as is */
    position: relative;
    overflow: hidden;
}
  
  .about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #4caf50, #81c784); /* green gradient */
  }
  
  .about-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  
  .about-icon {
    font-size: 48px;
    color: #4caf50; /* green */
    margin-bottom: 20px;
    animation: pulse 2s infinite;
  }
  
  .about-title {
    color: #388e3c; /* darker green */
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
    animation: fadeIn 1s ease-in;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .about-subtitle {
    color: #ffffff;
    background: linear-gradient(to right, #4caf50, #388e3c); /* green gradient */
    padding: 8px 25px;
    border-radius: 30px;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3); /* green shadow */
    animation: slideIn 1s ease-out;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  
  .about-story-wrapper, .team-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 1.2s ease-out;
  }
  
  .about-story-wrapper:hover, .team-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15); /* green hover shadow */
  }
  
  .about-card-header {
    background: linear-gradient(to right, #4caf50, #388e3c); /* green gradient */
    color: white;
    padding: 15px 25px;
    display: flex;
    align-items: center;
  }
  
  .about-card-header i {
    font-size: 24px;
    margin-right: 15px;
  }
  
  .about-card-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
  }
  
  .about-card-body {
    padding: 25px;
  }
  
  .story-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .story-image img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .story-image:hover img {
    transform: scale(1.05);
  }
  
  .about-card-body h3 {
    color: #388e3c; /* dark green */
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
  }
  
  .about-card-body p {
    color: #4a7c3e; /* medium green */
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
  }

.milestone-timeline {
    position: relative;
    padding: 20px 0;
    margin: 40px 0 20px;
}

.milestone-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #4caf50, #81c784); /* green gradient */
}

.milestone {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.milestone-year {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: #4caf50; /* green */
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.milestone-content {
    background-color: #f9f5ff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.milestone-content h4 {
    margin: 0 0 5px 0;
    color: #388e3c; /* darker green */
    font-size: 18px;
}

.milestone-content p {
    margin: 0;
    font-size: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-member h3 {
    color: #388e3c; /* darker green */
    margin: 15px 0 5px;
    font-size: 18px;
}

.team-role {
    color: #81c784; /* lighter green */
    font-weight: 600;
    margin: 0 0 10px;
    font-size: 14px;
}

.team-bio {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 15px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 15px;
}

.team-social .social-link {
    background: #e8f5e9; /* very light green */
    color: #4caf50;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.team-social .social-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(to right, #4caf50, #81c784);
    color: white;
}

/* Values Section */
.values-section {
    margin-top: 40px;
}

.values-title {
    text-align: center;
    color: #388e3c; /* dark green */
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    animation: fadeIn 1.5s ease-in;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.value-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    animation: fadeUp 1.6s ease-out;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 36px;
    color: #4caf50; /* green */
    margin-bottom: 15px;
}

.value-item h3 {
    color: #388e3c; /* dark green */
    margin: 0 0 10px 0;
    font-size: 20px;
}

.value-item p {
    color: #555;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 40px;
    position: relative;
}

.testimonials-title {
    text-align: center;
    color: #388e3c; /* dark green */
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    animation: fadeIn 1.5s ease-in;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #eafaf1; /* light green background */
  transform: rotate(45deg);
}

.testimonial-content p {
  color: #2c3e28; /* dark greenish text */
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.testimonial-content p::before {
  content: "\201C";
  color: #27ae60; /* darker green */
  font-size: 24px;
  position: relative;
  top: 5px;
  margin-right: 2px;
}

.testimonial-content p::after {
  content: "\201D";
  color: #27ae60;
  font-size: 24px;
  position: relative;
  top: 5px;
  margin-left: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #eafaf1; /* light green border */
}

.testimonial-author h4 {
  margin: 0 0 5px 0;
  color: #27ae60; /* darker green */
  font-size: 18px;
}

.testimonial-author p {
  margin: 0;
  color: #2c3e28; /* dark green */
  font-size: 14px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #c8e6c9; /* pale green */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #27ae60; /* active dark green */
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, rgba(46, 204, 113, 0.1), rgba(26, 188, 156, 0.1)); /* light green gradient */
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
  animation: fadeIn 2s ease-out;
}

.cta-title {
  color: #27ae60; /* dark green */
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}
.cta-text {
  color: #4a5d3b; /* a dark greenish-gray */
  margin-bottom: 20px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #cde6cd; /* light green border */
  border-radius: 30px 0 0 30px;
  font-size: 16px;
  outline: none;
}

.newsletter-input:focus {
  border-color: #27ae60; /* darker green */
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #27ae60, #1abc9c); /* green gradient */
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 0 30px 30px 0;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
}

.cta-button i {
  margin-left: 10px;
}

.purple-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #27ae60, #1abc9c); /* green gradient */
  margin: 30px auto;
  border-radius: 2px;
  animation: expand 1.5s ease-out;
  position: relative;
}

.purple-divider::before, .purple-divider::after {
  content: "•";
  position: absolute;
  top: -8px;
  color: #27ae60; /* darker green */
  font-size: 20px;
}

.purple-divider::before {
  left: -10px;
}

.purple-divider::after {
  right: -10px;
}

.cta-section {
  background: linear-gradient(to right, rgba(39, 174, 96, 0.1), rgba(26, 188, 156, 0.1)); /* light green gradient */
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  animation: fadeIn 2s ease-out;
}


  .faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1); /* green shadow */
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #27ae60, #1abc9c); /* green gradient */
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeDown 1s ease;
}

.faq-title {
  color: #2e7d32; /* dark green */
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
}

.faq-title::after {
  content: "?";
  font-size: 60px;
  position: absolute;
  color: #1abc9c; /* lighter green */
  opacity: 0.2;
  top: -15px;
  right: -30px;
}

.faq-subtitle {
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: white;
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #444;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(39, 174, 96, 0.05); /* light green hover */
}

.faq-question-text {
  font-size: 17px;
  padding-right: 30px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background-color: #27ae60; /* green lines */
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background-color: white;
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

.faq-answer-content {
  padding: 0 25px 20px;
  border-top: 1px dashed rgba(39, 174, 96, 0.2); /* green border */
  margin-top: 0;
}

.faq-item.active .faq-question {
  color: #27ae60;
  background-color: rgba(39, 174, 96, 0.05);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-highlight {
  color: #27ae60;
  font-weight: 600;
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  animation: fadeUp 1s ease;
}

.faq-category {
  padding: 8px 20px;
  background-color: white;
  color: #2e7d32; /* dark green */
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.faq-category:hover, .faq-category.active {
  background-color: #27ae60;
  color: white;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.faq-category.active {
  border: 2px solid #1abc9c;
}

  
  .faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeUp 1.2s ease;
  }
  
  .faq-search input {
    width: 100%;
    padding: 15px 55px 15px 25px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.3s ease;
  }
  
  .faq-search input:focus {
    box-shadow: 0 8px 20px rgba(147, 112, 219, 0.2);
  }
  
  .faq-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9370db;
    font-size: 20px;
  }
  
  .faq-search-icon::before {
    content: "🔍";
  }
  
  .faq-cta {
    text-align: center;
    background: linear-gradient(to right, rgba(147, 112, 219, 0.1), rgba(255, 107, 139, 0.1));
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    animation: fadeIn 1.5s ease-out;
  }
  
  .faq-cta-title {
    color: #8a65c9;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .faq-cta-text {
    color: #666;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .faq-cta-button {
    display: inline-block;
    background: linear-gradient(to right, #9370db, #ff6b8b);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .faq-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(147, 112, 219, 0.4);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeDown {
    from { 
      opacity: 0;
      transform: translateY(-30px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeUp {
    from { 
      opacity: 0;
      transform: translateY(30px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }


  
 .privacy-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.1);
    position: relative;
    overflow: hidden;
}
  
.privacy-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #2e8b57, #ff6b8b);
}
  
.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
  
.privacy-icon {
    font-size: 48px;
    color: #2e8b57;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
  
.privacy-title {
    color: #3cb371;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
    animation: fadeIn 1s ease-in;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
  
.privacy-subtitle {
    color: #ffffff;
    background: linear-gradient(to right, #2e8b57, #3cb371);
    padding: 8px 25px;
    border-radius: 30px;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(46, 139, 87, 0.3);
    animation: slideIn 1s ease-out;
}
  
.privacy-content {
    margin-top: 30px;
}
  
.privacy-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 1.2s ease-out;
}
  
.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
}
  
.privacy-card-header {
    background: linear-gradient(to right, #2e8b57, #3cb371);
    color: white;
    padding: 15px 25px;
    display: flex;
    align-items: center;
}
  
.privacy-card-header i {
    font-size: 24px;
    margin-right: 15px;
}
  
.privacy-card-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}
  
.privacy-card-body {
    padding: 25px;
}
  
.privacy-card-body h3 {
    color: #3cb371;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}
  
.privacy-card-body p {
    margin-bottom: 15px;
    font-size: 16px;
}
  
.privacy-list {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 20px;
}
  
.privacy-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
  
.privacy-list li i {
    color: #ff6b8b;
    margin-right: 10px;
    font-size: 14px;
}
  
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}
  
.purpose-item {
    background-color: #f5fff9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
  
.purpose-item:hover {
    transform: translateY(-3px);
}
  
.purpose-item i {
    font-size: 32px;
    color: #2e8b57;
    margin-bottom: 15px;
}
  
.purpose-item h3 {
    margin-top: 0;
    font-size: 18px;
}
  
.purpose-item p {
    font-size: 14px;
    margin-bottom: 0;
}
  
.highlight {
    color: #2e8b57;
    font-weight: 600;
}
  
.pink-highlight {
    color: #ff6b8b;
    font-weight: 600;
}
  .purple-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #4db32e, #7bcf61);
    margin: 30px auto;
    border-radius: 2px;
    animation: expand 1.5s ease-out;
    position: relative;
  }
  
  .purple-divider::before, .purple-divider::after {
    content: "•";
    position: absolute;
    top: -8px;
    color: #4db32e;
    font-size: 20px;
  }
  
  .purple-divider::before {
    left: -10px;
  }
  
  .purple-divider::after {
    right: -10px;
  }
  
  .cookie-types {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .cookie-type {
    flex: 1;
    min-width: 200px;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #48ad76; /* Changed from #7bcf61 to a richer emerald green */
  }
  .cookie-type h3 {
  display: flex;
  align-items: center;
  margin-top: 0;
  font-size: 16px;
}
.cookie-type h3 i {
  margin-right: 10px;
  color: #389457; /* Changed from purple to green */
}

.cookie-type p {
  font-size: 14px;
  margin-bottom: 0;
}

.rights-timeline {
  position: relative;
  margin: 30px 0;
  padding-left: 20px;
}

.rights-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, #389457, #4eba78); /* Changed from purple-pink to green gradient */
}

.right-item {
  display: flex;
  margin-bottom: 25px;
  position: relative;
}

.right-icon {
  background: #389457; /* Changed from purple to green */
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.right-content {
  padding-left: 10px;
}

.right-content h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 18px;
}

.right-content p {
  margin: 0;
  font-size: 15px;
}

.security-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.security-feature {
  background-color: #ebf7ee; /* Changed from light purple to light green */
  color: #389457; /* Changed from purple to green */
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.security-feature i {
  margin-right: 8px;
}

.update-note {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.update-note i {
  color: #389457; /* Changed from purple to green */
  margin-right: 10px;
}

.cta-section {
  background: linear-gradient(to right, rgba(56, 148, 87, 0.1), rgba(78, 186, 120, 0.1)); /* Changed to green gradient */
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
  animation: fadeIn 2s ease-out;
}

.cta-title {
  color: #389457; /* Changed from purple to green */
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-text {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #389457, #4eba78); /* Changed to green gradient */
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(56, 148, 87, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(56, 148, 87, 0.4); /* Updated to new green shadow */
}
  
  /* Animations */
  @keyframes fadeIn {
    from { 
      opacity: 0;
    }
    to { 
      opacity: 1;
    }
  }
  
  @keyframes slideIn {
    from { 
      opacity: 0;
      transform: translateX(-30px);
    }
    to { 
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeUp {
    from { 
      opacity: 0;
      transform: translateY(30px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes expand {
    from { width: 0; }
    to { width: 120px; }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @media (max-width: 768px) {
    .privacy-title {
      font-size: 32px;
    }
    
    .purpose-grid {
      grid-template-columns: 1fr;
    }
    
    .cookie-types {
      flex-direction: column;
    }
    
    .security-features {
      flex-direction: column;
    }
    
    .security-feature {
      width: 100%;
    }
  }
 .contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(58, 140, 95, 0.15); /* Changed to a richer green shadow */
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #2e8b57, #ff6b8b);
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.contact-icon {
  font-size: 48px;
  color: #2e8b57;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.contact-title {
  color: #3cb371;
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
  animation: fadeIn 1s ease-in;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
  color: #ffffff;
  background: linear-gradient(to right, #2e8b57, #3cb371);
  padding: 8px 25px;
  border-radius: 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(46, 139, 87, 0.3);
  animation: slideIn 1s ease-out;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.contact-form-wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1.2s ease-out;
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
}

.contact-form-header {
  background: linear-gradient(to right, #2e8b57, #3cb371);
  color: white;
  padding: 15px 25px;
  display: flex;
  align-items: center;
}

.contact-form-header i {
  font-size: 24px;
  margin-right: 15px;
}

.contact-form-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.contact-form {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2e8b57;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background: linear-gradient(to right, #2e8b57, #ff6b8b);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.4);
}

.submit-button i {
  margin-left: 10px;
}

.contact-info {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1.4s ease-out;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
}

.contact-info-header {
  background: linear-gradient(to right, #2e8b57, #3cb371);
  color: white;
  padding: 15px 25px;
  display: flex;
  align-items: center;
}

.contact-info-header i {
  font-size: 24px;
  margin-right: 15px;
}

.contact-info-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.contact-info-body {
  padding: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  background: linear-gradient(to right, #2e8b57, #3cb371);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-text {
  color: #555;
}

.info-text h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #3cb371;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  background: #e6fff0;
  color: #07a71c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, 
  background 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: linear-gradient(to right, #2e8b57, #ff6b8b);
  color: white;
}

.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1.6s ease-out;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.purple-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #2e8b57, #ff6b8b);
  margin: 30px auto;
  border-radius: 2px;
  animation: expand 1.5s ease-out;
  position: relative;
}

.purple-divider::before, .purple-divider::after {
  content: "•";
  position: absolute;
  top: -8px;
  color: #2e8b57;
  font-size: 20px;
}

.purple-divider::before {
  left: -10px;
}

.purple-divider::after {
  right: -10px;
}



/* Same animations as in privacy page */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes expand {
  from { width: 0; }
  to { width: 120px; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.hero23 {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: #2e8b57;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
    border-radius: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
 .hero-backdrop23 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #3cb371 0%, #2e8b57 40%, #228b22 100%);
    opacity: 1;
    z-index: 1;
}
  
.hero-backdrop23::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1200/800') center/cover no-repeat;
    mix-blend-mode: soft-light;
    opacity: 0.3;
}
  
.hero-backdrop23::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, rgba(46, 139, 87, 0) 70%);
}
  
.hero-content23 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}
  
.accent-circle23 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.1);
}
  
.hero-title23 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #e0ffe6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 100%;
    text-align: center;
}
  
.hero-tagline23 {
    font-family: 'Lato', sans-serif;
    font-size: 1.0rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
    max-width: 600px;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}
  
.hero-meta23 {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    justify-content: center;
}
  
/* Animated subtle background movement */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
  
.hero-backdrop23 {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}
  
/* Mobile responsive */
@media (max-width: 768px) {
    .hero23 {
        height: 350px;
    }
    
    .hero-title23 {
        font-size: 1.5rem;
    }
    
    .hero-tagline23 {
        font-size: 0.8rem;
    }
    
    .hero-meta23 {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .accent-circle23 {
        width: 200px;
        height: 200px;
    }
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
  
.shop-container3654 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
  
.section-header3434f {
    text-align: center;
    margin-bottom: 40px;
}
  
.section-header3434f h2 {
    color: #3cb371;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
  
.section-header3434f .tagline {
    display: inline-block;
    background-color: #3cb371;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
}
  
.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}
  
.decorative-line hr {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #3cb371, #ff6b98);
    border: none;
}
  
.decorative-line .dot {
    width: 8px;
    height: 8px;
    background-color: #3cb371;
    border-radius: 50%;
    margin: 0 10px;
}
  
/* Discount Banner Styles */
.discount-banner {
    background: linear-gradient(to right, #3cb371, #ff6b98);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
  
  .discount-banner h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
  }
  
  .discount-banner p {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .promo-code {
    background-color: white;
    color: #8a65c9;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin: 10px 0;
  }
  
  .countdown {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
  }
  
  /* Featured Discount Products */
  .discount-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .discount-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b98;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 1rem;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-image {
    height: 300px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .product-image img {
    width: 100%;
    height: 96%;
    object-fit: cover;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .product-price {
    color: #8a65c9;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .shop-btn {
    display: inline-block;
    background: linear-gradient(to right, #8a65c9, #ff6b98);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
  }
  
  .shop-btn:hover {
    opacity: 0.9;
  }
  
  .category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .category-tab {
    padding: 10px 20px;
    margin: 0 10px 10px;
    background-color: white;
    border: 2px solid #8a65c9;
    color: #8a65c9;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .category-tab.active, .category-tab:hover {
    background-color: #8a65c9;
    color: white;
  }
  
  .section-title36565 {
    color: #8a65c9;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .products-grid, .discount-products {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }
  
  @media (max-width: 480px) {
    .products-grid, .discount-products {
      grid-template-columns: 1fr;
    }
  }
/* Product Detail Page Styles */
.product-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  margin-bottom: 20px;
  color: #666;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #8a65c9;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Product Gallery and Info Layout */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Product Gallery */
.product-gallery {
  width: 100%;
}

.main-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-images {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
  opacity: 1;
  border-color: #8a65c9;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-detail-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.product-detail-price {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.current-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #8a65c9;
  margin-right: 15px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
  margin-right: 15px;
}

.discount-badge {
  background-color: #ff6b98;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Rating Stars */
.product-rating {
  margin-bottom: 20px;
}

.stars {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.star {
  color: #ddd;
  margin-right: 2px;
}

.star.filled {
  color: #ffb900;
}

.star.half {
  position: relative;
  color: #ddd;
}

.star.half:before {
  content: "★";
  position: absolute;
  color: #ffb900;
  width: 50%;
  overflow: hidden;
}

.rating-number {
  margin-left: 10px;
  color: #666;
  font-size: 0.9rem;
}

/* Product Description */
.product-detail-description {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #555;
}

/* Product Availability */
.product-availability {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.in-stock {
  color: #28a745;
  font-weight: bold;
  margin-right: 15px;
}

.delivery-info {
  color: #666;
}

/* Quantity Controls */
.product-quantity {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.product-quantity label {
  margin-right: 15px;
  font-weight: bold;
  color: #333;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quantity-btn:hover {
  background-color: #e0e0e0;
}

.quantity-controls input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 1rem;
}

/* Product Actions */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.add-to-cart-btn {
  padding: 12px 25px;
  background: linear-gradient(to right, #8a65c9, #ff6b98);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.buy-now-btn {
  padding: 12px 25px;
  background-color: #ff6b98;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.wishlist-btn {
  padding: 12px 25px;
  background-color: white;
  color: #8a65c9;
  border: 2px solid #8a65c9;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover, .buy-now-btn:hover {
  opacity: 0.9;
}

.wishlist-btn:hover {
  background-color: #f8f4fe;
}

/* Tabs Styling */
.product-tabs {
  margin-bottom: 50px;
}

.tabs-header {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
}

.tab-item {
  padding: 15px 25px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-item.active {
  color: #8a65c9;
}

.tab-item.active:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #8a65c9, #ff6b98);
}

.tab-content {
  display: none;
  padding: 10px;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  color: #333;
  margin-bottom: 15px;
}

.tab-content p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.tab-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.tab-content li {
  margin-bottom: 8px;
  color: #555;
}

/* Specifications Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.specs-table th, .specs-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.specs-table th {
  width: 180px;
  color: #666;
}

/* Reviews Section */
.reviews-summary {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.average-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.big-rating {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
}

.total-reviews {
  color: #666;
  margin-top: 5px;
}

.rating-breakdown {
  flex-grow: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.rating-level {
  width: 60px;
  color: #666;
}

.progress-bar {
  flex-grow: 1;
  height: 10px;
  background-color: #eee;
  border-radius: 5px;
  margin: 0 15px;
}

.progress {
  height: 100%;
  background: linear-gradient(to right, #8a65c9, #ff6b98);
  border-radius: 5px;
}

.rating-percent {
  width: 40px;
  color: #666;
  text-align: right;
}

/* Customer Reviews */
.review-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.reviewer-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: bold;
  color: #333;
}

.review-date {
  color: #888;
  font-size: 0.9rem;
}

.review-title {
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.review-text {
  line-height: 1.6;
  color: #555;
}

.view-more-reviews {
  text-align: center;
  margin-top: 30px;
}

.view-more-btn {
  padding: 10px 25px;
  background-color: white;
  color: #8a65c9;
  border: 2px solid #8a65c9;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background-color: #f8f4fe;
}

/* Related Products */
.related-products-section {
  margin-top: 50px;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.related-products .product-card {
  height: 100%;
}

.related-products .product-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-products .shop-btn {
  margin-top: auto;
}

/* Mobile-specific styles for the product detail page */
@media (max-width: 767px) {
  /* Product container spacing */
  .product-detail-container {
    padding: 10px;
  }
  
  /* Product showcase (gallery and info) */
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  /* Gallery adjustments */
  .main-image {
    height: 500px;
  }
  
  .thumbnail-images {
    justify-content: center;
  }
  
  .thumbnail {
    width: 60px;
    height: 60px;
  }
  
  /* Product title and price */
  .product-detail-title {
    font-size: 1.5rem;
  }
  
  .current-price {
    font-size: 1.5rem;
  }
  
  .original-price {
    font-size: 1rem;
  }
  
  /* Button layout */
  .product-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .add-to-cart-btn, .buy-now-btn, .wishlist-btn {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    text-align: center;
  }
  
  /* Tab navigation */
  .tabs-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    border-bottom: none;
  }
  
  .tab-item {
    text-align: center;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
  }
  
  .tab-item.active {
    background-color: #8a65c9;
    color: white;
  }
  
  .tab-item.active:after {
    display: none;
  }
  
  /* Review section */
  .reviews-summary {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
  }
  
  /* Specifications table */
  .specs-table {
    font-size: 0.9rem;
  }
  
  .specs-table th {
    width: 120px;
  }
  
  /* Related products */
  .related-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .related-products .product-title {
    font-size: 0.9rem;
  }
  
  .related-products .product-price {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .related-products .shop-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  /* Breadcrumb navigation */
  .breadcrumb {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  
  /* Quantity control */
  .quantity-controls {
    max-width: 100%;
  }
  
  /* Customer reviews */
  .review-item {
    padding: 15px 0;
  }
  
  .reviewer-info {
    flex-direction: column;
    gap: 5px;
  }
  
  .big-rating {
    font-size: 2.5rem;
  }
  
  /* Small phones (iPhone SE size) */
  @media (max-width: 375px) {
    .main-image {
      height: 400px;
    }
    
    .thumbnail {
      width: 50px;
      height: 50px;
    }
    
    .tabs-header {
      grid-template-columns: 1fr;
    }
    
    .product-detail-title {
      font-size: 1.3rem;
    }
    
    .related-products .shop-btn {
      padding: 6px 10px;
      font-size: 0.8rem;
    }
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .product-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .main-image {
    height: 350px;
  }
  
  .related-products {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tabs-header {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 5px;
  }
  
  .tab-item {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}