/* ================================
   ProEdge Outsourcing – AU Page CSS
   Author: ProEdge Outsourcing
   Country: Australia
================================ */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

body {
  background: #f9fbfd;
  color: #1f2937;
  line-height: 1.7;
}

/* ===== GLOBAL UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

/* ===== HERO SECTION ===== */
.hero-au {
  background: linear-gradient(
      rgba(17, 24, 39, 0.75),
      rgba(17, 24, 39, 0.75)
    ),
    url("assets/au-bg.jpg") center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
}

.hero-au h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-au p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  opacity: 0.95;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
}

.services h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 60px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #6b7280;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: #f1f5f9;
  padding: 80px 0;
}

.why-us h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.why-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2563eb;
}

.why-box p {
  font-size: 15px;
  color: #4b5563;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.cta p {
  max-width: 650px;
  margin: auto auto 30px;
  font-size: 16px;
  opacity: 0.95;
}

/* ===== FOOTER ===== */
footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-au h1 {
    font-size: 34px;
  }

  .hero-au p {
    font-size: 16px;
  }

  .services h2,
  .why-us h2,
  .cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-au {
    padding: 90px 0;
  }

  .btn-primary {
    padding: 12px 26px;
    font-size: 14px;
  }
}
