
.category-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eaeaf0;
  transition: all 0.25s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.category-card .icon {
  font-size: 26px;
  color: #5b6cff;
}

.hero-advanced {
  background:
    radial-gradient(800px circle at 15% 20%, rgba(91,108,255,0.12), transparent 60%),
    radial-gradient(600px circle at 85% 25%, rgba(122,136,255,0.10), transparent 60%),
    radial-gradient(500px circle at 50% 80%, rgba(180,190,255,0.08), transparent 70%),
    linear-gradient(135deg, #f8f9ff 0%, #eef1f7 60%, #e9ecf5 100%);
}

/* TEXT */
.hero-sub {
  font-size: 14px;
  color: #6c757d;
}

.hero-heading {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5b6cff, #7a88ff);
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.hero-desc {
  color: #1e1e1e;
  font-size: 15px;
  max-width: 877px;
}

/* SEARCH GLASS */
.search-glass {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 10px 14px 10px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.5);
}

.search-glass input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
}

.search-glass button {
 
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

/* BLOBS */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: #5b6cff;
  top: -80px;
  left: -80px;
}

.blob-2 {
  width: 260px;
  height: 260px;
  background: #a5b4ff;
  bottom: -80px;
  right: -60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 34px;
  }

  .hero-badge {
    font-size: 16px;
  }
}

.home-about{
width: 780px;
}

.popular-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
}

.section-header p {
  color: #6b7280;
  margin-top: 8px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.calc-card {
  display: block;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eef2f7;
  transition: all 0.25s ease;
}

.calc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-top h3 {
  font-size: 16px;
  font-weight: 600;
}

.card-top span {
  font-size: 18px;
  color: #3b82f6;
}

.calc-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 10px 0 15px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 999px;
}
.calc-card {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #111827;
  border: 1px solid #eef2f7;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Gradient overlay (hidden by default) */
.calc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #1d4ed8,   /* blue */
    #dc2626,   /* red */
    #f59e0b,   /* yellow */
    #e5e7eb    /* light gray */
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* Content stays above */
.calc-card * {
  position: relative;
  z-index: 1;
}

/* Hover effect */
.calc-card:hover::before {
  opacity: 0.08; /* subtle, premium feel */
}

.calc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: transparent;
}

/* Title hover color pop */
.calc-card:hover h3 {
  color: #1d4ed8;
}

/* Arrow animation */
.card-top span {
  transition: transform 0.2s ease;
}

.calc-card:hover .card-top span {
  transform: translateX(4px);
}

.about-highlight {
  
  padding: 20px 20px;
  text-align: center;
}

.about-heading {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
  max-width: 800px;
  margin: 0 auto;
}

.about-heading .star {
  color: #ef4444;
  margin: 0 4px;
}

.note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 10px;
}

.note .star {
  color: #ef4444;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  background: #111827;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #1f2937;
  transform: translateY(-2px);
}

.section-divider-wave {
  line-height: 0;
}

.section-divider-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.section-divider-wave path {
  fill: url(#gradient);
}

/* Gradient definition */
.section-divider-wave svg {
  background: linear-gradient(
    90deg,
    #1d4ed8,
    #dc2626,
    #f59e0b,
    #e5e7eb
  );
}
.fox-cal_h_img{
	width:200px;
}