:root {
    --primary-green: #15533b;
    --dark-green: #2D5F5D;
    --text-dark: #000;
    --text-light: #000;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --accent-mint: #cff0e473;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    /* removes underline */
    color: inherit;
    /* uses the parent element’s color */
}

/* Optional: set a specific color */
a {
    color: var(--text-light);
    /* or any color like #4b86b0 */
}

/* Optional hover effect */
a:hover {
    color: var(--primary-green);
    /* or your preferred hover color */
    text-decoration: none;
    /* keep underline removed on hover */
}

.readmore-btn {
    background: transparent;
    /* outline style */
    border: 2px solid var(--dark-green);
    /* outline color */
    color: var(--dark-green);
    /* text color */
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.readmore-btn:hover {
    background: var(--dark-green);
    /* fill on hover */
    color: #fff;
    /* white text */
}

/* Product Hero Section */
.product-hero {
    background: linear-gradient(135deg, var(--product-accent-mint) 0%, var(--product-primary-green) 100%);
    color: var(--product-white);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 95, 93, 0.3);
    /* subtle overlay */
    z-index: 1;
}

.product-hero-container {
    position: relative;
    z-index: 2;
}

.product-hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--product-white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: productFadeInDown 1s ease forwards;
}

/* Animation */
@keyframes productFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Bootstrap Navbar */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-green);
}

.contact-number {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-right: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: color 0.3s;
    margin-left: 0.5rem;
}

.icon-btn:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem 5%;
    gap: 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-tag {
    color: var(--primary-green);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: end;
}

.plant-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.plant-card:hover {
    transform: translateY(-10px);
}

.plant-img {
    width: 100%;
    height: 180px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    object-fit: contain;
}

/* Trending Section */
.trending {
    padding: 4rem 5%;
    text-align: center;
}

.trending h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trending-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.trending-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trending-card h3 {
    margin-top: 1rem;
    color: var(--text-dark);
}

.price {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    background: var(--text-dark);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.video-section {
    position: relative;
    background: var(--dark-green);
    padding: 3rem;
    border-radius: 12px;
    color: var(--white);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-mint);
}

.video-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Categories */
.categories {
    padding: 4rem 5%;
    text-align: center;
}

.categories h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    background: var(--bg-light);
    cursor: pointer;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.category-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--text-dark);
    text-align: left;
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: #fff;
    padding: 5px;
    background-color: #2c3e5098;
}

.category-info p {
    color: var(--text-light);
}

/* Expert Section */
.expert-section {
    background: linear-gradient(rgba(45, 95, 93, 0.9), rgba(45, 95, 93, 0.9));
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expert-content {
    background: rgba(78, 205, 196, 0.15);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.expert-content h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.expert-content p {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expert-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.expert-btn:hover {
    background: var(--accent-mint);
    transform: translateY(-2px);
}



/* Footer */
footer {
    background: var(--accent-mint);
    padding: 3rem 5% 2rem;
    color: var(--text-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;

}

.footer-section a:hover {
    color: var(--primary-green);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon i {
    line-height: 1;
}

.social-icon:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive fix */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}


@media (max-width: 968px) {

    .hero,
    .how-it-works,

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-images,
    .trending-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .trending-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Categories Section */
.categories {
    padding: 4rem 5%;
    text-align: center;
}

.categories h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.categories-card {
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.categories-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.categories-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.categories-card h3 {
    margin-top: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}


/* //////////////////////////////// */
.about-us-section img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}