/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #1E90C2;
  --primary-dark: #1A7FAE;
  --primary-light: #E8F4FA;
  --secondary: #F5A300;
  --secondary-light: #FEF6E5;
  --accent: #D18C00;
  --dark: #2c353c;
  --dark-2: #5F6468;
  --gray: #8A8F94;
  --gray-light: #F2F2F2;
  --gray-border: #e2e8f0;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #5F6468;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.7; }
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.25; color: var(--dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }
section { padding: 80px 0; }

/* ===== TYPOGRAPHY ===== */
.section-title { font-size: 2rem; margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 3rem; }
.section-label { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 1rem; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,99,235,0.35); color: var(--white); }

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); color: var(--primary); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-border);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }
.navbar-brand-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--primary); }
.navbar-brand-text span { color: var(--secondary); }
.nav-phone { font-size: 0.88rem; color: var(--gray); font-weight: 500; }
.nav-phone i { color: var(--primary); }
.navbar-nav .nav-link { color: var(--text) !important; font-weight: 500; font-size: 0.93rem; padding: 0.5rem 0.9rem !important; transition: color 0.2s; }
.navbar-nav .nav-link:hover { color: var(--primary) !important; }
.navbar-nav .nav-link.active { color: var(--primary) !important; }
.nav-cta { background: var(--primary); color: var(--white) !important; border-radius: var(--radius-sm); padding: 8px 18px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--primary-dark); color: var(--white) !important; }
.dropdown-menu { border: 1px solid var(--gray-border); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 0.5rem; }
.dropdown-item { border-radius: 6px; font-size: 0.9rem; padding: 8px 12px; color: var(--text); font-weight: 500; }
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #94a3b8; padding: 60px 0 0; }
.footer-brand { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--white); }
.footer-brand span { color: var(--accent); }
.footer h6 { color: var(--white); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: #94a3b8; font-size: 0.9rem; transition: color 0.2s; }
.footer ul li a:hover { color: var(--white); }
.footer-contact li { font-size: 0.9rem; margin-bottom: 0.6rem; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; color: #94a3b8; font-size: 0.9rem; transition: var(--transition); margin-right: 6px; }
.footer-social a:hover { background: var(--primary); color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; margin-top: 40px; font-size: 0.85rem; }
.footer-legal a { color: #94a3b8; margin-left: 16px; font-size: 0.83rem; }
.footer-legal a:hover { color: white; }

/* ===== HERO ===== */
.hero { padding: 140px 0 80px; background: linear-gradient(135deg, #E8F4FA 0%, #F2F2F2 50%, #FEF6E5 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(30,144,194,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(245,163,0,0.05) 0%, transparent 70%); border-radius: 50%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--gray-border); border-radius: 50px; padding: 6px 16px; font-size: 0.83rem; color: var(--gray); margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.hero-badge span { background: var(--primary); color: white; border-radius: 50px; padding: 2px 10px; font-size: 0.75rem; font-weight: 700; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
.hero h1 .highlight { color: var(--primary); }
.hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.hero-stat span { font-size: 0.85rem; color: var(--text-muted); }
.hero-img-wrap { position: relative; }
.hero-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-card-float { position: absolute; background: white; border-radius: var(--radius-sm); padding: 14px 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-border); }
.hero-card-float.card-1 { bottom: 30px; left: -20px; }
.hero-card-float.card-2 { top: 30px; right: -20px; }
.hero-card-float .value { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.hero-card-float .label { font-size: 0.78rem; color: var(--text-muted); }

/* ===== MARQUEE ===== */
.marquee-section { padding: 30px 0; background: var(--white); border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); overflow: hidden; }
.marquee-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; white-space: nowrap; padding-right: 2rem; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; align-items: center; gap: 0; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 2.5rem; border-right: 1px solid var(--gray-border); white-space: nowrap; font-weight: 700; font-size: 1rem; color: var(--dark-2); }
.marquee-item i { font-size: 1.3rem; }
.marquee-item .mp-amazon { color: #FF9900; }
.marquee-item .mp-flipkart { color: #2874F0; }
.marquee-item .mp-meesho { color: #F43397; }
.marquee-item .mp-myntra { color: #FF3F6C; }
.marquee-item .mp-jiomart { color: #0B6E4F; }
.marquee-item .mp-snapdeal { color: #E53E3E; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--primary); padding: 50px 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-item .number { font-size: 2.4rem; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.stat-item .stat-label { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-top: 4px; }

/* ===== SERVICES ===== */
.services-section { background: var(--gray-light); }
.service-card { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--gray-border); transition: var(--transition); height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--primary); margin-bottom: 1.2rem; }
.service-card h5 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.service-link { color: var(--primary); font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-card:hover .service-link { gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-card { display: flex; gap: 1.2rem; padding: 1.5rem; background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); margin-bottom: 1rem; transition: var(--transition); }
.why-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.why-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; flex-shrink: 0; }
.why-card h6 { font-size: 0.97rem; margin-bottom: 0.3rem; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-light); }
.testimonial-card { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--gray-border); height: 100%; }
.stars { color: var(--secondary); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.93rem; font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.93rem; }
.author-title { color: var(--text-muted); font-size: 0.8rem; }

/* ===== CTA STRIP ===== */
.cta-strip { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 70px 0; }
.cta-strip h2 { color: white; font-size: 1.9rem; margin-bottom: 0.7rem; }
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 1.5rem; }

/* ===== CONTACT PAGE ===== */
.contact-card { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--gray-border); height: 100%; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.contact-info-item h6 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; font-weight: 500; }
.contact-info-item p { font-size: 0.95rem; font-weight: 600; margin: 0; }
.form-control, .form-select { border: 1px solid var(--gray-border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.93rem; transition: border-color 0.2s, box-shadow 0.2s; font-family: 'DM Sans', sans-serif; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); outline: none; }

/* ===== ABOUT PAGE ===== */
.team-card { background: white; border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid var(--gray-border); transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; margin: 0 auto 1rem; }
.team-card h6 { font-size: 1rem; margin-bottom: 3px; }
.team-card .role { color: var(--primary); font-size: 0.83rem; font-weight: 600; }

/* ===== SERVICES PAGE ===== */
.service-detail-card { background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); padding: 2rem; height: 100%; transition: var(--transition); }
.service-detail-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.process-step { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem; background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); margin-bottom: 1rem; }
.process-num { width: 44px; height: 44px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.faq-item { border: 1px solid var(--gray-border); border-radius: var(--radius-sm); margin-bottom: 0.8rem; overflow: hidden; }
.faq-question { padding: 1rem 1.2rem; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: white; transition: background 0.2s; }
.faq-question:hover { background: var(--primary-light); }
.faq-answer { padding: 0 1.2rem 1rem; color: var(--text-muted); font-size: 0.92rem; display: none; }
.faq-answer.open { display: block; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); padding: 130px 0 60px; }
.page-hero h1 { color: white; font-size: 2.4rem; }
.page-hero p { color: rgba(255,255,255,0.7); }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.88rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== PLATFORM CARDS (marketplace pages) ===== */
.platform-hero { padding: 130px 0 60px; }
.platform-hero.amazon { background: linear-gradient(135deg, #146EB4 0%, #0F4A8A 100%); }
.platform-hero.flipkart { background: linear-gradient(135deg, #2874F0 0%, #1a5ecc 100%); }
.platform-hero h1 { color: white; }
.platform-hero p { color: rgba(255,255,255,0.85); }
.package-card { background: white; border-radius: var(--radius); border: 2px solid var(--gray-border); padding: 2rem; text-align: center; transition: var(--transition); height: 100%; }
.package-card.featured { border-color: var(--primary); }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-badge { display: inline-block; background: var(--primary); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; margin-bottom: 1rem; }
.package-price { font-size: 2rem; font-weight: 800; color: var(--dark); }
.package-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.package-features { text-align: left; margin: 1.2rem 0; }
.package-features li { padding: 6px 0; font-size: 0.9rem; color: var(--text-muted); display: flex; gap: 8px; align-items: center; }
.package-features li i { color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { gap: 1.2rem; }
  .stat-item { padding: 0 10px; }
  .stat-item .number { font-size: 1.8rem; }
  .hero-card-float { display: none; }
  .section-title { font-size: 1.6rem; }
  .cta-strip h2 { font-size: 1.5rem; }
}
