body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.navbar {
  border-bottom: 1px solid #ddd;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: black !important;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #cc4d4d !important;
}

.hero {
  width: 100%;
  height: auto;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.ebook-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.ebook-desc {
  font-size: 1.1rem;
  color: #000000;
}

.ebook-price {
  font-size: 2rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #16D1AF, #0aa185);
  /* Gradient */
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  /* Rounded pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(22, 209, 175, 0.4);
  /* Glow effect */
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0aa185, #16D1AF);
  /* Reverse gradient */
  transform: translateY(-3px);
  /* Lift effect */
  box-shadow: 0 8px 20px rgba(22, 209, 175, 0.6);
}

.btn-primary:active {
  transform: scale(0.96);
  /* Press effect */
}

.resources-page {
  font-family: 'Inter', sans-serif;
}

.resources-card {
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.resources-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.resources-card ul {
  list-style: none;
  padding: 0;
}

.resources-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.resources-card ul li:last-child {
  border-bottom: none;
}

.resources-card a {
  text-decoration: none;
  color: #000000;
}

.resources-card a:hover {
  color: #0d6efd;
}

.custom-btn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

/* YouTube Button */
.youtube-btn {
  background-color: #ff0000;
  color: #fff;
}

.youtube-btn:hover {
  background-color: #cc0000;
  color: #fff;
}

/* Instagram Button */
.instagram-btn {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: white;
  text-decoration: none;
}

.instagram-btn i {
  margin-right: 8px;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .custom-btn {
    padding: 6px 12px;
    font-size: 10px;
    bottom: 1px;
  }
}