/* style.css - Shared theme for SATS Dot IN */

/* Reset tweaks */
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
}

/* Gradient backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, #0d6efd, #20c997);
  color: #fff;
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #212529, #000);
  color: #fff;
}

/* Hero sections */
.hero-section {
  background: linear-gradient(135deg, #0d6efd, #20c997);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero-section h1 {
  font-weight: 800;
  font-size: 2.5rem;
}
.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #0d6efd, #20c997);
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #20c997, #0d6efd);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: #111;
  color: #bbb;
  font-size: 0.9rem;
}

/* Section headers */
h2, h3, h4 {
  color: #0d6efd;
  font-weight: 700;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}
