/* ------------------ Base & Reset ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #dbe1ff;
  background: #0b1026;
}

/* ------------------ Containers ------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* ------------------ Hero ------------------ */
.hero.branding-hero {
  background: linear-gradient(135deg, #0a74da, #1b9fff);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}
.hero.branding-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero.branding-hero p {
  font-size: 1.25rem;
}

/* ------------------ Sections ------------------ */
.section {
  padding: 4rem 2rem;
  background: #0b1026;
  margin-bottom: 2rem;
}
.section h2 {
  color: #0a74da;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.1rem;
  color: #dbe1ff;
}

/* ------------------ Branding Grid ------------------ */
.branding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.branding-card {
  background: #111936;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.branding-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #0a74da;
}
.branding-card h3 {
  color: #0a74da;
  margin: 1rem 0 0.5rem;
}
.branding-card p {
  color: #dbe1ff;
  font-size: 0.95rem;
  padding: 0 1rem 1rem;
}
.branding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(10,116,218,0.3);
}

/* ------------------ Why Branding Matters ------------------ */
.section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
}
.section ul li {
  background: #0a74da33;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  color: #dbe1ff;
  font-weight: 600;
  font-size: 1rem;
}

/* ------------------ CTA ------------------ */
.cta {
  background: #0a74da;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cta .btn {
  background: #fff;
  color: #0a74da;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.cta .btn:hover {
  background: #e6f0ff;
  transform: translateY(-3px);
}

/* ------------------ Footer ------------------ *//* ------------------ Footer ------------------ */
.footer {
  background: #0b1026;
  color: #dbe1ff;
  padding: 50px 2rem 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}

.footer a {
  color: #9bb0ff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.contact-icons a {
  font-size: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.3s;
}

.contact-icons a:hover {
  transform: scale(1.15);
}

.contact-icons a[aria-label="WhatsApp"] { background:#25D366; }
.contact-icons a[aria-label="Facebook"] { background:#1877F2; }
.contact-icons a[aria-label="Instagram"] { background:linear-gradient(45deg,#feda75,#d62976,#4f5bd5); }
.contact-icons a[aria-label="Email"] { background:#EA4335; }
.contact-icons a[aria-label="Phone"] { background:#34B7F1; }

.footer small {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #9bb0ff;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 768px) {
  .hero.branding-hero h1 { font-size: 2.25rem; }
  .hero.branding-hero p { font-size: 1rem; }
  .branding-card img { height: 150px; }
  .section ul { flex-direction: column; gap: 1rem; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .contact-icons { justify-content: center; }
  .logo-row { justify-content: center; }
}
.footer{background:#0b1026;color:#dbe1ff;margin-top:32px}
.footer-content{display:grid;grid-template-columns:2fr 1fr;gap:16px;padding:28px 0}
.footer a{color:#ffdd00;text-decoration:none}
.footer a:hover{text-decoration:underline}
.logo-row{display:flex;align-items:center;gap:10px}

.contact-icons{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin-bottom:16px}
.contact-icons a{
  font-size:22px;width:42px;height:42px;display:flex;align-items:center;justify-content:center;
  border-radius:50%;background:#222;color:#fff;transition:background 0.3s ease, transform 0.2s ease;
}
.contact-icons a:hover{transform:scale(1.1)}
.contact-icons a[aria-label="WhatsApp"]{background:#25D366}
.contact-icons a[aria-label="Facebook"]{background:#1877F2}
.contact-icons a[aria-label="Instagram"]{background:linear-gradient(45deg,#feda75,#d62976,#4f5bd5)}
.contact-icons a[aria-label="Email"]{background:#EA4335}
.contact-icons a[aria-label="Phone"]{background:#34B7F1}
.logo-img small{width:10px;height:10px;object-fit:contain}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.logo-img {
  height: 35px;
  margin-right: 8px;
}


/* Contact button */
.btn-primary {
  padding: 0.5rem 1rem;
  background: #ffd32a;
  color: #0a3d62;
  border-radius: 8px;
  font-weight: bold;
}

