/* style.css for Creative Rising Minds - Dark Mode with Sticky Navbar */

/* Reset & base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}

/* Navbar styles */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e1e;
  padding: 10px 20px;
  color: white;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-right a {
  color: #e0e0e0;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.nav-right a:hover {
  text-decoration: underline;
}

/* Hero Banner */
.banner {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 65px;
  padding-left: 10px;
  padding-right: 10px;
  background: linear-gradient(135deg, #1f0036, #3a0ca3, #5f0f40);
  color: white;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.color-changing {
    animation: colorCycle 3s infinite alternate;
  }

  @keyframes colorCycle {
    0%   { color: ghostwhite; }
    50%  { color: white; }
    100% { color: gray; }
  }
.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ff9800;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta:hover {
  background-color: #e68900;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
}

/* Indicator cards */
#indicators {
  text-align: center;
}

.indicator-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Base card style */
.card {
  padding: 20px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  color: #f5f5f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Unique gradients */
.card.trend-analyser {
 background: linear-gradient(135deg, #043927, #56ab2f);
}
.card.demand-supply {
 background: linear-gradient(135deg, #7f6a00, #f5af19);
}
.card.stock-screener {
   background: linear-gradient(135deg, #b31217, #430606);
}

/* Hover animation */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Card headings */
.card h3 {
  margin-top: 0;
}

/* Card button */
.card-link {
  display: inline-block;
  margin-top: 10px;
  background: #1976d2;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.card-link:hover {
  background: #145ea8;
}

/* Pricing section */

.table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: #1e1e1e;
  color: #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border-radius: 0px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #c2b5b5;
  padding: 12px 26px;
  text-align: center;
}

.pricing-table th {
  background-color: #2c2c2c;
  font-weight: bold;
  color: #ff9800;
}

/* Contact section */
#contact {
  text-align: center;
  background: linear-gradient(135deg, #1f0036, #3a0ca3, #5f0f40);
  padding: 60px 20px;
  color: #e0e0e0;
  border-top: 2px solid #444;
}

#contact h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

#contact p {
  font-size: 1.1rem;
  margin: 6px 0;
}

#contact a {
  color: #90caf9;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

.upi-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding: 0 5%;
}

.upi-text {
  max-width: 300px;
  text-align: left;
}

.upi-text h4 {
  color: #ffcc00;
  margin-bottom: 5px;
}

.upi-text p span {
  font-weight: bold;
  font-size: 1.2rem;
}

.qr-img {
  max-width: 280px;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
}

/* Footer */
footer {
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
  border-top: 4px solid #ff9800;
}

.carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding: 1rem;
}

.carousel iframe {
      flex: 0 0 auto;
      scroll-snap-align: start;
      width: 300px;
      height: 180px;
      border: none;
      border-radius: 10px;
}

.carousel::-webkit-scrollbar {
      display: none;
}
.nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
}
.nav-left .brand-name {
      text-decoration: none;
      color: inherit;
}
.card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
}
.group-discount {
      text-align: center;
      margin-top: 2rem;
}
.group-discount h3 {
      color: #ff69b4;
      font-size: 1.5rem;
}
.group-discount p {
      margin: 0.3rem;
      font-weight: bold;
}
.group-discount .green {
      color: #00ff99;
}

.content-box {
  background-color: #4ccc53;
  color: #222;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 10px;
}

.content-box p {
  margin-top: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.content-box .card-link {
  display: inline-block;
  margin-top: 15px;
  background: #1976d2;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.content-box .card-link:hover {
  background: #145ea8;
}



/* =====================================
 */
