/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

/* ========== COMMON ========== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background: #f3f4f6;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #6b7280;
  margin-top: 15px;
}

.mt {
  margin-top: 25px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #000000, #8b0000);
  color: #ffffff;
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
}

.hero p {
  margin-top: 15px;
  font-size: 18px;
  color: #e0e7ff;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.hero-image {
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.15);
  border-radius: 28px;          /* smoother rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;

  overflow: hidden;             /* ðŸ”¥ image clip inside radius */
  box-shadow: 0 25px 50px rgba(0,0,0,0.6); /* premium depth */
}

/* ðŸ‘‡ Image styling */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;          /* same as container */
}


/* ========== BUTTONS ========== */
.btn {
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: #ffffff;
  color: #8b0000; /* darker red */
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

/* ========== FEATURES ========== */
.features-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-card h3 {
  margin-bottom: 10px;
}

/* ========== SCREENSHOTS ========== */
.screenshots {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  overflow-x: auto;
}

/* ===== SCREEN CARD ===== */
.screen {
  position: relative;
  width: 180px;
  height: 360px;
  background: #000;
  border-radius: 18px 18px 18px 18px;
  overflow: hidden;
  border: 2px solid #7a0f0f;
}

.screen::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -20px;
  height: 30px;
  background: rgba(0,0,0,0.6);
  filter: blur(25px);
  border-radius: 50%;   /* 🔥 TRUE rounded shadow */
  z-index: -1;
}

/* ===== IMAGE ===== */
.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;              
  transition: transform 0.35s ease;
}

/* ===== HOVER EFFECT ===== */
.screen:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 40px 50px -12px rgba(122, 15, 15, 0.8);
}

.screen:hover img {
  transform: scale(1.05);
}



/* ========== FOOTER ========== */
.footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    margin: auto;
  }
  /* ========== MOBILE SCREENSHOTS FIX ========== */
@media (max-width: 768px) {

  .screenshots {
    justify-content: flex-start;   /* center ki jagah natural scroll */
    padding-bottom: 10px;
  }

  .screen {
    width: 150px;                  /* thora chhota for mobile */
    height: 300px;
    flex-shrink: 0;                /* important: scroll ke liye */
  }

}

}
