/* ===== Landing Page Styles Only ===== */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 15px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
}

.logo a {
  color: #0066cc;
  text-decoration: none;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar nav .btn {
  background: #0066cc;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  transition: 0.3s;
}

.navbar nav .btn:hover {
  background: #004d99;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0066cc, #00a3cc);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-cta {
  display: inline-block;
  background: #ff9900;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #e68a00;
}

/* Features Section */
.features {
  padding: 70px 20px;
  text-align: center;
}

.features h2 {
  margin-bottom: 50px;
  font-size: 2.2rem;
  color: #222;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 15px;
  color: #0066cc;
  font-size: 1.3rem;
}

/* CTA Section */
.cta {
  background: #0066cc;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.cta .btn-cta {
  background: #ff9900;
}

.cta .btn-cta:hover {
  background: #e68a00;
}

/* Footer */
.footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .nav-flex {
    flex-direction: column;
  }
  .navbar nav {
    margin-top: 10px;
  }
}

/* Trusted Section */
.trusted {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
}

.trusted h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.trusted p {
  margin-bottom: 30px;
  color: #666;
}

.brands {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.brands img {
  max-height: 50px;
  opacity: 0.8;
  transition: 0.3s;
}

.brands img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.brands img {
  max-height: 50px;
  opacity: 0.85;
  transition: 0.3s;
}

.brands img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Feature Icons */
.icon {
  font-size: 2.5rem;
  color: #ff9900;
  margin-bottom: 15px;
}

