/* :root {
    --primary: #2E7D32;
    --secondary: #FF6F00;
    --accent: #FFA726;
    --dark: #1B5E20;
    --light: #F1F8E9;
} */
:root {
    --primary: #f204f1;
    --secondary: #fe7d77;
    --accent: #b217c6;
    --dark: #010101;
    --light: #F1F8E9;
}

/* black #010101 , pink #f204f1 , some pink #fe7d77 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.top-bar {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.navbar {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mega Menu Styles */
.nav-item.dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    display: none;
    z-index: 1000;
    border-top: 3px solid var(--primary);
}

.nav-item.dropdown:hover .mega-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-column {
    padding: 0 20px;
}

.mega-menu-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
}

.mega-menu-title i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 24px;
}

.mega-menu-item {
    display: block;
    color: #555;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 15px;
}

.mega-menu-item:hover {
    background: linear-gradient(135deg, var(--light), var(--primary));
    color: var(--dark);
    padding-left: 20px;
    font-weight: 500;
}

.mega-menu-item i {
    margin-right: 8px;
    color: var(--secondary);
    font-size: 14px;
}

/* Mobile Mega Menu */
@media (max-width: 991px) {
    .mega-menu {
        position: relative;
        box-shadow: none;
        padding: 15px;
        background: var(--light);
        border-radius: 10px;
        margin-top: 10px;
        max-height: 70vh;
        overflow-y: auto;
        display: none;
    }

    .nav-item.dropdown .mega-menu {
        display: none;
    }

    .nav-item.dropdown.show .mega-menu {
        display: block;
    }

    .mega-menu-column {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .mega-menu-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .mega-menu-item {
        padding: 6px 12px;
        font-size: 14px;
    }
}

.dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
}

.btn-quote {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* mega menu end */



/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(138, 45, 122, 0.9), rgba(17, 4, 19, 0.9)), url('./img/Fruits.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/><circle cx="40" cy="30" r="2" fill="white" opacity="0.1"/><circle cx="70" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="25" cy="60" r="2" fill="white" opacity="0.1"/><circle cx="85" cy="70" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100px 100px;
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-title {
    position: relative;
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, var(--light));
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    border-radius: 15px;
    margin: 10px;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: white;
}

.product-card {
    background: linear-gradient(135deg, #ffffff, var(--light));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.btn-enquiry {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-enquiry:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light), #ffffff);
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
}

.service-icon {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.2);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    height: 300px;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8), rgba(145, 44, 140, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light), #ffffff);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--light);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.contact-item i {
    font-size: 30px;
    margin-right: 15px;
    color: var(--accent);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
}

.btn-subscribe {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 60px 0 20px;
}

.footer-section h5 {
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Breadcrumb section with background image */
.breadcrumb-section {
    position: relative;
    background-image: url('./img/Fruits.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
}

/* Dark overlay */
.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    /* Adjust opacity here */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 60px 0;
    }

    .breadcrumb-content h1 {
        font-size: 28px;
    }
}

/* products details */
