body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar-nav .nav-link {
  color: #212529;
  font-weight: 500;
  position: relative;
  margin: 0 14px;
  padding: 8px 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #6f42c1 !important;
  font-weight: 600;
}

.navbar-nav .dropdown-toggle::after {
  content: none !important;
}

.navbar-nav .dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: #f1e8fc;
  color: #6f42c1;
}

.navbar-toggler {
  border: none;
}

/* ================= BUTTONS ================= */
.btn-purple {
  background-color: #6f42c1;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-purple:hover {
  background-color: #6f42c1;
  color: #fff;
} 

.btn-outline-purple {
  border: 2px solid #6f42c1;
  color: #6f42c1;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-purple:hover {
  background-color: #6f42c1;
  color: #fff;
}

/* ================= SLIDER ================= */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.card-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  gap: 1rem;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.card-slider::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.slider-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.slider-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.slider-card .card-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
}

.slider-card .card-body h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.slider-card .card-body p {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #ccc;
}

.slider-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.slider-card:hover .card-body {
  opacity: 1;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border-radius: 50%;
  border: none;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
  .slider-card {
    width: 100%; /* one full card */
    margin: 0 auto;
    scroll-snap-align: center;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-card {
    width: calc((100% / 3) - 1rem); /* 3 cards */
  }
}

@media (min-width: 992px) {
  .slider-card {
    width: calc((100% / 5) - 1rem); /* 5 cards */
  }
}

/* ================= IDEAS SECTION ================= */
.ideas-section {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  position: relative;
}

.text-purple {
  color: #6f42c1 !important;
}

.text-purple:hover {
  color: #8e5bd3 !important;
}

/* ================= SOCIAL ICONS ================= */
.social-icon {
  color: white;
  transition: color 0.3s ease;
}

.icon-facebook:hover { color: #1877f2; }
.icon-instagram:hover { color: #c13584; }
.icon-linkedin:hover { color: #0077b5; }
.icon-youtube:hover { color: #ff0000; }
.icon-pinterest:hover { color: #bd081c; }

/* ================= OFFER CARDS ================= */
.icon-splash {
  background: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: background-color 0.3s ease;
}

.icon-splash i {
  color: #6f42c1;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.offer-card {
  background: white;
  color: #212529;
  transition: all 0.3s ease;
  border: none;
}

.offer-card:hover {
  background-color: #6f42c1;
  color: white !important;
  transition: all 0.5s ease-in-out;
}

.offer-card:hover .icon-splash {
  background-color: white;
}

.offer-card:hover .icon-splash i {
  color: #6f42c1 !important;
}

.offer-card h5,
.offer-card p {
  transition: color 0.3s ease;
  color: #212529;
}

.offer-card:hover h5,
.offer-card:hover p {
  color: white !important;
}

.offer-btn {
  background-color: #6f42c1;
  color: white;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-btn {
  background-color: white !important;
  color: #6f42c1 !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  background: #20b954;
  transform: scale(1.1);
  color: white;
}

  .hero-img {
  border-radius: 12px;
  box-shadow: 
    0 8px 24px rgba(111, 66, 193, 0.3),   /* soft purple shadow */
    0 4px 12px rgba(0, 0, 0, 0.15);       /* subtle black depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-img:hover {
  transform: scale(1.02);
  box-shadow: 
    0 12px 32px rgba(111, 66, 193, 0.4),
    0 6px 16px rgba(0, 0, 0, 0.2);
}

.ideas-section {
      background: url("https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e") center/cover no-repeat;
      position: relative;
      padding: 80px 0;
    }

    .ideas-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(3px);
      z-index: 0;
    }

    .ideas-container {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: auto;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      text-align: center;
      color: #fff;
    }

    .section-subtitle {
      font-weight: 700;
      color: #ffc107;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .explore-btn {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      color: #ffc107;
      border: 2px solid #ffc107;
      padding: 12px 30px;
      font-weight: bold;
      border-radius: 50px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .explore-btn:hover {
      background: #ffc107;
      color: #fff;
      transform: scale(1.05);
    }

    .stat-card {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(111,66,193,0.2);
}
.glass {
  background: rgba(255, 255, 255, 0.2); /* transparency */
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(111, 66, 193, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(241, 7, 163, 0.35);
}
.glass i, .glass h3 {
  color: #6f42c1 !important;
}
.nav-pro {
    color: #333;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .nav-pro:hover {
    color: #5e17eb;
    background: rgba(94, 23, 235, 0.08);
  }

  .nav-pro.active {
    color: #5e17eb;
    font-weight: 600;
    border-bottom: 2px solid #5e17eb;
    padding-bottom: 4px;
  }

  .border-purple {
    border: 1px solid #6e42c159 !important;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
  }

  .bg-purple-light {
    background-color: #6e42c1 !important;
    color: white;
    font-weight: 500;
  }

  .bg-purple {
    background-color: #6f42c1;
  }

  .nav-link-subnav:hover {
    text-decoration: underline;
  }

  #hero-slider-img {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
.fade-out {
  opacity: 0;
}
