* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.7;
}

:root {
  --primary: #062B5B;
  --gold: #C89B3C;
  --light: #f7f9fc;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 10px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}

.logo img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
}

nav a:hover {
  color: var(--gold);
}

/* ── Hero ── */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(6, 43, 91, .85), rgba(6, 43, 91, .85)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: white;
}

.hero h1 {
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 900px;
  margin: auto;
  margin-bottom: 30px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin: 10px;
}

/* ── Sections ── */
.section {
  padding: 90px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  color: var(--primary);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 10px;
}

/* ── Stats ── */
.stats {
  background: var(--primary);
  color: white;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  text-align: center;
}

.stats h3 {
  font-size: 42px;
  color: var(--gold);
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  transition: .3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* ── Card link ── */
.card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover {
  color: var(--primary);
}

/* ── Logo anchor reset ── */
.logo a {
  display: inline-flex;
  align-items: center;
}

/* ── Active nav link ── */
nav a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ── Inner page hero banner ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0a4a8f 100%);
  padding: 150px 8% 80px;
  color: white;
  text-align: center;
}

.page-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--gold);
  font-size: 17px;
}

/* ── Industries with icons ── */
.industry {
  display: flex;
  align-items: center;
  gap: 12px;
}

.industry-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Contact page two-column layout ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-info > p {
  color: #666;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: #444;
  font-size: 15px;
}

.info-item i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-item a {
  color: #444;
  text-decoration: none;
}

.info-item a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Brand Activations ── */
.brand-act {
  background: var(--primary);
  color: white;
}

.brand-act .section-title h2 {
  color: white;
}

.section-sub {
  color: var(--gold);
  font-size: 17px;
  margin-top: 8px;
  font-weight: 500;
}

.activation-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.activation-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #cdd8e8;
}

/* ── Accordion ── */
.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}

.accordion-btn:hover {
  color: var(--gold);
}

.accordion-btn i {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 10px;
  transition: transform .3s;
}

.accordion-btn.open i {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.accordion-body.open {
  max-height: 200px;
  padding-bottom: 16px;
}

.accordion-body p {
  color: #cdd8e8;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .activation-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ── AI section ── */
.ai {
  background: #f7f9fc;
}

/* ── Industries ── */
.industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.industry {
  padding: 18px;
  background: #fff;
  border-left: 5px solid var(--gold);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

/* ── Contact ── */
.contact {
  background: #f7f9fc;
}

form {
  max-width: 700px;
  margin: auto;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-size: 16px;
}

/* ── Footer ── */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 40px;
}

.footer-logo {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: white;
  padding: 6px 16px;
  border-radius: 8px;
  display: block;
  margin: 0 auto 20px;
}

/* ── Resume Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 43, 91, 0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: white;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 540px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h2 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 8px;
}

.modal > p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #aaa;
  padding: 0;
}

.modal-close:hover {
  color: var(--primary);
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 15px;
  transition: border-color .3s, background .3s;
  color: #888;
  font-size: 14px;
}

.file-upload-label i {
  font-size: 28px;
  color: var(--gold);
}

.file-upload-label:hover,
.file-upload-label.has-file {
  border-color: var(--gold);
  background: #fffbf3;
  color: var(--primary);
}

.file-upload-label input[type="file"] {
  display: none;
}

/* ── WhatsApp bubble ── */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  transition: transform .2s, box-shadow .2s;
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .about-grid { grid-template-columns: 1fr; }
  nav { display: none; }
}
