@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #333;
    background-color: #fff;
}

:root {
    --primary-blue: #0d6efd;
    --light-bg: #f8f9fa;
    --text-dark: #333;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 10px 0;
}
.nav-link {
    color: #333 !important;
    font-weight: 500;
}
.nav-link:hover {
    color: var(--primary-blue) !important;
}
.btn-primary-custom {
    background-color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: transform 0.2s;
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    background-color: #0b5ed7;
}

/* Hero Section (Grid Background like Image 1) */
.hero-section {
    padding: 80px 0;
    position: relative;
    /* Light Grid Pattern */
    background-image: radial-gradient(#e6efff 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

/* Floating Icons Specific Styling */
.floating-container {
    position: relative;
    display: inline-block;
}

.floating-icon {
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    width: 70px; /* Fixed size for icons */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    z-index: 5;
}

.floating-icon img {
    max-width: 100%;
    max-height: 100%;
}

/* Specific Positions for 3 Icons */
.icon-flipkart { top: 10%; left: -10%; animation-delay: 0s; }
.icon-meesho { top: 45%; left: -20%; animation-delay: 1.5s; }
.icon-amazon { bottom: 15%; left: -10%; animation-delay: 0.5s; }

@media (max-width: 991px) {
    .icon-flipkart { left: 5%; top: 5%; }
    .icon-meesho { left: 0%; }
    .icon-amazon { left: 5%; bottom: 5%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Supported Platforms Strip */
.grayscale-logos img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 35px;
}
.grayscale-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Blue Section */
.blue-gradient-bg {
    background: linear-gradient(135deg, #2b58f9 0%, #6d8aff 100%);
    color: white;
    padding: 80px 0;
}
.step-list { border-left: 2px solid rgba(255,255,255,0.3); padding-left: 20px; }
.step-item { position: relative; padding-bottom: 30px; }
.step-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

/* Cards */
.help-card, .feature-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    background: #fff;
    height: 100%;
}
.help-card:hover, .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background-color: #fff;
    padding-top: 60px;
    border-top: 1px solid #eee;
}
.footer-links li { list-style: none; margin-bottom: 10px; }
.footer-links a { text-decoration: none; color: #666; }
.sticky-bottom-bar {
    background: #212529;
    color: white;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    font-size: 0.9rem;
}
.whatsapp-float {
    position: fixed;
    bottom: 60px;
    left: 20px;
    z-index: 1001;
    font-size: 3rem;
    color: #25d366;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* --- Pricing Page Styles --- */
.pricing-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    color: white;
    padding: 80px 0 120px; /* Bottom padding extra for overlap */
    margin-bottom: -60px; /* Negative margin to pull cards up */
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.pricing-card.popular {
    background: #0d6efd;
    color: white;
    border: none;
    transform: scale(1.05);
    z-index: 2;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.popular .text-muted,
.pricing-card.popular .list-unstyled li {
    color: rgba(255,255,255,0.9) !important;
}
.pricing-card.popular .price-tag,
.pricing-card.popular h5 {
    color: white !important;
}
.pricing-card.popular .btn {
    background: white;
    color: var(--primary-blue);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}
.price-period {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}
.features-list i {
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pricing-card.popular .features-list i {
    color: #fff !important;
}

/* --- Authentication Pages (Login/Register) --- */
.auth-section {
    min-height: 85vh; /* Screen ke beech mein lane ke liye */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 40px 0;
}

.auth-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 450px; /* Card ki choudai fix */
    border: 1px solid #eee;
}

.form-control-custom {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #fcfcfc;
}
.form-control-custom:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
    background-color: #fff;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}
.auth-divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 2;
    color: #999;
    font-size: 0.85rem;
}

.social-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
    transition: all 0.2s;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.social-btn:hover {
    background: #f8f9fa;
    border-color: #ddd;
}

/* --- Contact Us Page --- */
.contact-header {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    height: 100%;
    transition: transform 0.3s;
}
.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e6efff;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.map-container iframe {
    width: 100%;
    border-radius: 16px;
    border: 1px solid #eee;
}