/* ===========================
   Lakshya Classes - style.css
   =========================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---- Root Variables ---- */
:root {
  --primary:   #c41700;
  --primary-dark: #c41700;
  --secondary: #1a1a2e;
  --dark:      #0f0e17;
  --light-bg:  #FDECEE;
  --text-dark: #1a1a2e;
  --text-muted:#6b7280;
  --white:     #ffffff;
  --gradient:  linear-gradient(135deg, #c41700 0%, #c41700 100%);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --radius:    16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* ========================
   NAVBAR
======================== */
.navbar-custom {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-custom .navbar-brand img {
  height: 52px;
  width: auto;
}

.navbar-custom .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
  color: var(--primary);
  background: rgba(232, 93, 4, 0.07);
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler img {
  width: 28px;
}

/* ========================
   HERO SECTION
======================== */
.hero-section {
  background: var(--secondary);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,93,4,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,140,6,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,93,4,0.15);
  color: var(--primary);
  border: 1px solid rgba(232,93,4,0.3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.btn-playstore {
  display: inline-block;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-playstore img {
  height: 52px;
  border-radius: 10px;
}

.btn-playstore:hover {
  transform: translateY(-3px);
  box-shadow:0 12px 28px rgb(219 53 66 / 41%);
}

.hero-img-wrap {
  position: relative;
  text-align: center;
  padding-bottom: 0;
}

.hero-img-wrap img {
  max-height: 500px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* ========================
   SECTION HEADINGS
======================== */
.section-label {
  display: inline-block;
  background: rgba(232,93,4,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title .accent {
  color: var(--primary);
}

/* ========================
   FEATURES SECTION
======================== */
.features-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.features-section .feature-img img {
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  max-height: 460px;
  object-fit: cover;
  width: 100%;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  margin-bottom: 16px;
}

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

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #DB3542;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.feature-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========================
   SCREENSHOTS SECTION
======================== */
.screenshots-section {
  padding: 90px 0;
  background: var(--white);
}

.screenshots-section .swiper {
  padding-bottom: 40px;
}

.screenshot-slide {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transition: transform 0.3s;
}

.screenshot-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.screenshot-slide:hover {
  transform: translateY(-6px);
}

/* Swiper dots */
.swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ========================
   DOWNLOAD SECTION
======================== */
.download-section {
  padding: 90px 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.download-section .section-title {
  color: var(--white);
}

.download-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
}

.download-mobile img {
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* ========================
   FOOTER
======================== */
.footer-section {
  background: var(--dark);
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-section p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-section a {
  color: var(--primary);
  font-weight: 600;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0 0;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-img-wrap {
    margin-top: 40px;
  }

  .hero-img-wrap img {
    max-height: 360px;
  }

  .features-section .feature-img {
    margin-bottom: 40px;
  }

  .download-section {
    text-align: center;
  }

  .download-desc {
    margin: 0 auto 28px;
  }

  .download-mobile {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 14px 16px;
  }

  .btn-playstore img {
    height: 44px;
  }
}
