/* =========================================================
   SaaSify - Modern SaaS Landing Page Template
   Author: Your Name
   Version: 1.0
   ========================================================= */

/* ========== GLOBAL STYLES ========== */
body {
  font-family: 'Inter', sans-serif;
  color: #333;
}

header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: #007bff !important;
}

.btn-primary {
  border-radius: 50px;
  padding: 10px 24px;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(120deg, #007bff 0%, #6610f2 100%);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.hero h1 {
  font-weight: 700;
  font-size: 2.8rem;
}

/* ========== SECTION HEADINGS ========== */
.section-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ========== SERVICES ========== */
.service-card {
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ========== ABOUT SECTION ========== */
#about img {
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ========== PRICING ========== */
.pricing-card {
  border-radius: 16px;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* ========== TESTIMONIALS ========== */
.testimonial {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* ========== BLOG SECTION ========== */
#blog .card {
  transition: all 0.3s ease;
}
#blog .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ========== FOOTER ========== */
footer {
  background: #f8f9fa;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
/* Smooth fade-in animation for reveal elements */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar style when scrolled */
.navbar-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  background-color: #fff !important;
}
/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
