/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #ffffff;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: #0b3c8c;
  padding: 10px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  max-width: 100%;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  transition: 0.3s;
}

.nav a:hover {
  background: #e63946;
  border-radius: 5px;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url("../images/hero.jpg") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-buttons a {
  display: inline-block;
  padding: 25px 55px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  margin: 10px 10px 0 0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.hero-buttons a.primary {
  background-color: #e63946;
}

.hero-buttons a.secondary {
  background-color: #1d3557;
}

.hero-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  opacity: 0.95;
}

/* ================= SERVICES ================= */
.services {
  padding: 60px 0;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #0b3c8c;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 15px;
  border: 1px solid #ddd;
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-card img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: #f1f5ff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0b3c8c;
}

.testimonial-box {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.testimonial-box p {
  font-size: 18px;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-box strong {
  color: #e63946;
}

/* ================= FOOTER ================= */
footer {
  background: #0b3c8c;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* ================= WHATSAPP ================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 18px 22px;
  border-radius: 50%;
  font-size: 28px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  z-index: 999;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .header-flex {
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    justify-content: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons a {
    padding: 16px 30px;
    font-size: 18px;
  }

  .service-card img {
    width: 160px;
    height: 160px;
  }
}
/* BCP PARTNER PAGE */

.bcp-hero {
  background: linear-gradient(
    rgba(29,53,87,0.85),
    rgba(29,53,87,0.85)
  ), url("../images/hero.jpg") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.bcp-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.bcp-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

.bcp-section {
  padding: 60px 20px;
  text-align: center;
}

.bcp-section.light {
  background: #f8f9fa;
}

.bcp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.bcp-card {
  padding: 25px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-weight: 600;
}

.bcp-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.benefit {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.bcp-form {
  max-width: 600px;
  margin: 30px auto 0;
  text-align: left;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.btn.full {
  width: 100%;
  text-align: center;
}

/* MOBILE */
@media(max-width:768px){
  .bcp-hero h1 {
    font-size: 32px;
  }
}
/* PROMINENT BCP HERO BUTTON */
.bcp-apply-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 20px 55px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #e63946, #ff1e2d);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.5);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.bcp-apply-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.7);
  background: linear-gradient(135deg, #ff1e2d, #e63946);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .bcp-apply-btn {
    padding: 16px 38px;
    font-size: 18px;
  }
}

