/* =======================
   General Reset & Fonts
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  transition: all 0.5s ease;
  overflow-x: hidden;
}

.gradient-text {
  background: linear-gradient(90deg, #355886, #F48D5B, #00BF63, #FFBD59, #FFDE59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =======================
   Dark Mode
======================= */
body.dark-mode {
  background-color: #111;
  color: #f5f5f5;
}

body.dark-mode .card,
body.dark-mode .pricing-card,
body.dark-mode .service-card,
body.dark-mode .problem,
body.dark-mode .solution {
  background: #222;
  color: #f5f5f5;
}

body.dark-mode .modal-content {
  background: #222;
  color: #f5f5f5;
}

body.dark-mode .cta-btn {
  background: linear-gradient(90deg, #FFDE59, #FFBD59);
  color: #111;
}

body.dark-mode .register-section {
  background: linear-gradient(135deg, #00BF63, #FFBD59);
  color: #111;
}

body.dark-mode footer {
  background: #222;
  color: #fff;
}

/* =======================
   Theme Toggle
======================= */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 1.8rem;
  z-index: 1000;
}

/* =======================
   Hero Section
======================= */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #355886, #F48D5B);
  color: #fff;
  padding: 0 20px;
}

.hero .logo {
  width: 180px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cta-btn {
  text-decoration: none;
  padding: 12px 30px;
  background: linear-gradient(90deg, #FFBD59, #FFDE59);
  color: #111;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
}

/* =======================
   Problem & Solution
======================= */
.problem-solution {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 80px 20px;
  gap: 40px;
}

.problem, .solution {
  flex: 1 1 400px;
  background: #f5f5f5;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.problem:hover, .solution:hover {
  transform: translateY(-10px);
}

/* =======================
   Hover Cards
======================= */
.hover-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 80px 20px;
}

.card {
  background: #fff;
  padding: 40px 30px;
  width: 250px;
  text-align: center;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
}

.card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0px 15px 25px rgba(0,0,0,0.2);
}

/* =======================
   Modals
======================= */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.7);
  padding: 50px 20px;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  max-width: 700px;
  position: relative;
  animation: slideDown 0.5s ease;
  color: inherit;
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content p, .modal-content ul {
  margin-bottom: 15px;
  line-height: 1.6;
}

.modal-content ul li {
  margin-bottom: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* =======================
   Register Section
======================= */
.register-section {
  background: linear-gradient(135deg, #00BF63, #FFBD59);
  text-align: center;
  padding: 80px 20px;
  color: #111;
}

.register-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.register-section p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* =======================
   Services & Tabs
======================= */
.services {
  padding: 60px 20px;
  background-color: #f4f7fc;
  text-align: center;
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #355886;
  margin-bottom: 10px;
}

.services p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

/* Tabs */
.audience-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 25px;
  border: none;
  background-color: #355886;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.tab-btn:hover, .tab-btn.active {
  background-color: #F48D5B;
}

/* Tab Contents */
.tab-content {
  display: none;
  margin-bottom: 40px;
  text-align: left;
}

.tab-content.active {
  display: block;
  color: inherit; /* ensures dark mode text works */
}

.service-card {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  color: inherit;
}

.service-card h4 {
  color: #00BF63;
  margin-bottom: 10px;
}

.service-card ul {
  padding-left: 20px;
  list-style-type: disc;
  color: inherit;
}

/* =======================
   Extra Ideas Section
======================= */
.extra-ideas-section {
  background: linear-gradient(135deg, #00BF63, #FFBD59);
  padding: 80px 20px;
  text-align: center;
}

.extra-ideas-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #111; /* solid black */
  font-family: 'Playfair Display', serif;
}

.ideas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.idea-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  width: 250px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-size: 1.1rem;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.idea-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Dark Mode Support */
body.dark-mode .extra-ideas-section h2 {
  color: #fff; /* optional: white title in dark mode */
}

body.dark-mode .idea-card {
  background-color: #222;
  color: #f5f5f5;
}





/* =======================
   Pricing Section
======================= */
.pricing {
  margin: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pricing-card {
  background: linear-gradient(135deg, #355886, #F48D5B, #00BF63, #FFBD59);
  color: #111;
  padding: 30px 20px;
  border-radius: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease, color 0.5s ease;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.pricing-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.pricing-card p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.pricing-card ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  color: #fff;
}

.pricing-card ul li {
  margin-bottom: 8px;
}

/* Dark mode overrides */
body.dark-mode .pricing-card {
  background: linear-gradient(135deg, #222, #333, #444, #555);
  color: #f5f5f5;
}

body.dark-mode .pricing-card h3,
body.dark-mode .pricing-card p,
body.dark-mode .pricing-card ul li {
  color: #f5f5f5;
}


/* =======================
   Footer
======================= */
footer {
  background: #355886;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
}

footer a {
  color: #FFDE59;
  text-decoration: none;
}

/* =======================
   Responsive
======================= */
@media screen and (max-width: 900px) {
  .problem-solution {
    flex-direction: column;
  }
  .hover-cards {
    flex-direction: column;
    align-items: center;
  }
}

