/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-secondary: #64748b;
    --color-text: #0f172a;
    --color-text-light: #475569;
    --color-border: #e2e8f0;
    --color-bg-light: #f8fafc;
    --color-bg-gray: #f1f5f9;
    --color-white: #ffffff;
    --color-green: #10b981;
    --color-orange: #f97316;
    --color-purple: #a855f7;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(243, 239, 239, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-light);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: var(--color-text-light);
}

.mobile-menu-btn:hover {
    background: var(--color-bg-light);
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background: currentColor;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background: currentColor;
    transition: transform 0.2s;
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    bottom: -0.5rem;
}

.nav-mobile {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
}

.nav-mobile.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: var(--color-text-light);
    border-radius: 0.375rem;
    transition: background 0.2s;
}

.mobile-nav-link:hover {
    background: var(--color-bg-light);
}

.mobile-cta {
    width: 100%;
    margin-top: 0.75rem;
}

/* Buttons */
.btn-primary {
    padding: 0.625rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    font-weight: 500;
    border-radius: 0.375rem;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(to bottom right, var(--color-bg-light), #dbeafe, var(--color-bg-light));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1.5rem 0 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.feature-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.bg-blue {
    background: #dbeafe;
    color: var(--color-primary);
}

.feature-icon.bg-green {
    background: #d1fae5;
    color: var(--color-green);
}

.feature-icon.bg-orange {
    background: #fed7aa;
    color: var(--color-orange);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--color-text-light);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: var(--color-primary);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background: var(--color-bg-gray);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s;
}

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

.category-btn:not(.active) {
    background: var(--color-white);
    color: var(--color-text);
}

.category-btn:not(.active):hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    height: 12rem;
    background: var(--color-bg-gray);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-body {
    padding: 1.5rem;
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-bg-gray);
    color: var(--color-text-light);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.product-unit {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.product-desc {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-specs-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color 0.2s;
}

.product-specs-toggle:hover {
    color: var(--color-primary);
}

.chevron {
    transition: transform 0.2s;
}

.chevron.active {
    transform: rotate(180deg);
}

.product-specs {
    display: none;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.product-specs.active {
    display: block;
}

.product-specs li {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.delivery-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
}

.delivery-icon {
    padding: 0.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 0.5rem;
}

.delivery-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.delivery-desc {
    color: var(--color-text);
}

/* About Section */
.about-section {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.why-icon.bg-blue {
    background: #dbeafe;
    color: var(--color-primary);
}

.why-icon.bg-green {
    background: #d1fae5;
    color: var(--color-green);
}

.why-icon.bg-orange {
    background: #fed7aa;
    color: var(--color-orange);
}

.why-icon.bg-purple {
    background: #e9d5ff;
    color: var(--color-purple);
}

.why-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.why-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: var(--color-primary);
    border-radius: 9999px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-gray);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    transition: box-shadow 0.3s;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info-icon.bg-blue {
    background: #dbeafe;
    color: var(--color-primary);
}

.contact-info-icon.bg-green {
    background: #d1fae5;
    color: var(--color-green);
}

.contact-info-icon.bg-orange {
    background: #fed7aa;
    color: var(--color-orange);
}

.contact-info-icon.bg-purple {
    background: #e9d5ff;
    color: var(--color-purple);
}

.contact-info-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.contact-form-card {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: none;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
}

.footer-logo-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-logo-subtitle {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item svg {
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact-item p {
    font-size: 0.875rem;
}

.footer-list {
    list-style: none;
    font-size: 0.875rem;
}

.footer-list li {
    padding: 0.25rem 0;
    color: #94a3b8;
}

.footer-list li::before {
    content: '• ';
    margin-right: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 0.875rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: #0f172a;
    color: var(--color-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(200%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: #cbd5e1;
}
.whatsapp-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 32px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            z-index: 999;
        }
.whatsapp-btn:hover {
    background: #1ebe5d;
    }
.manish-ticker {
    font-size: 15px;
    padding-block: 8px;
    border-block: 0px solid #ccc;
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: var(--gap);

    animation:scroll 40s linear infinite;
    }
.manish-ticker:hover ul{
        animation-play-state: paused;
    }

    @keyframes scroll{
        to{
            transform: translateX(calc(-100%));
        }
    }
    .manish-ticker ul{
    list-style: none;
    flex-shrink: 0;
    min-width: 200%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
    }

/* Responsive Design */
@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons button {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}
