/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Bootstrap 5.3.2 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Font Awesome 6.5.0 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* 1. GLOBAL VARIABLES & RESET - Updated for Netra Creation */
:root {
    /* Netra Creation Palette */
    --primary-color: #e5338d;    /* Vibrant Magenta from the dress */
    --secondary-color: #000000;  /* Classic Black from logo text */
    --accent-color: #fff1f7;     /* Soft blush pink for subtle backgrounds */
    
    --bg-light: #ffffff;         /* Clean white for high-fashion feel */
    --text-dark: #111827;        /* Deep charcoal for legibility */
    --text-grey: #6b7280; 
    
    /* Updated shadows using the new magenta theme */
    --card-shadow: 0 10px 30px rgba(229, 51, 141, 0.08);
    --hover-shadow: 0 20px 40px rgba(229, 51, 141, 0.15);
}

/* utility classes */
.text-primary-color, .text-primary { color: var(--primary-color) !important; }
.text-secondary-color { color: var(--secondary-color) !important; }
.bg-primary-color, .bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary-color { background-color: var(--secondary-color) !important; }
.bg-accent-color { background-color: var(--accent-color) !important; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* 2. NAVBAR - Modernized with Pink Accents */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 10px 0;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    padding: 0 15px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -10px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border: 0 !important;
}

.nav-link:hover::after,
.active-menu::after {
    width: 25px;
}

.nav-link:hover,
.active-menu {
    color: var(--primary-color) !important;
}

/* 4. HERO SECTION - Modernized with Fashion Gradient */
.hero-section {
    /* Gradient from the logo pink to a stylish black/charcoal overlay */
    background: linear-gradient(135deg, rgba(229, 51, 141, 0.85), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-slogan {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* 5. GENERIC CONTENT BOXES */
.content-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--card-shadow);
}

/* 6. FEATURE CARDS */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: none;
    text-align: center;
    height: 100%;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    background: var(--accent-color);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

/* 8. SECTIONS & LISTS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    letter-spacing: -1px;
}

/* 9. STATS SECTION */
.stats-section {
    background: linear-gradient(to right, #fff, var(--accent-color), #fff);
    padding: 80px 0;
    margin-top: 40px;
    border-top: 1px solid #fce7f3;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

/* 10. FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Grid Layout Styles (Product Card) */
.veg-card {
    transition: all 0.4s ease;
    border: 1px solid #f9fafb;
    background: #fff;
    border-radius: 16px;
    height: 100%;
    padding-bottom: 25px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
}

.veg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-color);
}

.veg-icon {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
    transition: transform 0.4s ease;
}

.veg-card:hover .veg-icon {
    transform: scale(1.05);
}

.veg-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0;
    padding: 0 15px;
}

.inquire-btn-card {
    display: inline-block;
    width: 85%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 4px; /* Fashion boutique sharp look */
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.inquire-btn-card:hover {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(229, 51, 141, 0.3);
}

/* Footer Styling - Black for Elegant Look */
footer {
    background-color: #000000;
    color: #9ca3af;
}

footer h6 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

footer a {
    color: #9ca3af;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Modern Client/Contact Card Styling */
.client-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.client-card .icon-wrapper {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(229, 51, 141, 0.3);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    margin-top: 15px;
}

.dropdown-item {
    padding: 10px 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    color: var(--primary-color);
    background: white;
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-link {
        border-bottom: 1px dotted var(--primary-color);
    }
    .navbar-nav {
        border: 1px dotted var(--primary-color);
        margin-bottom: 15px !important;
    }
}