/* ========== GLOBAL ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #102034;
  background-color: #fdf8ee; /* warm cream */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(253, 248, 238, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e3da;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */

.logo img {
  height: 100px;   /* perfect size */
  width: auto;    /* prevents stretching */
  display: block;
}


.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #12355b; /* navy */
}

.logo-sub {
  font-size: 0.75rem;
  color: #d4a017; /* gold */
  letter-spacing: 0.18em;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  color: #42516a;
  font-weight: 500;
}

.nav-links a:hover {
  color: #12355b;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #c8cdd6;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 1.1rem;
  cursor: pointer;
}



/* ========== HERO ========== */


.hero {
  position: relative;
  padding: 3.5rem 0 3.5rem;
  color: #fdf8ee;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  background:
    radial-gradient(circle at 80% 40%, #f3e5c2 0, transparent 60%),
    linear-gradient(135deg, #0b1a30 0%, #12355b 55%, #f3e5c2 100%);
}

/* subtle world-map style overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    radial-gradient(circle at 80% 40%, rgba(243, 229, 194, 0.65) 0, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
  gap: 2.75rem;
  align-items: center;
  padding: 0 1.25rem 0.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  max-width: 32rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 185, 121, 0.65);
  background-color: rgba(15, 23, 42, 0.2);
  margin-bottom: 0.8rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 0.9rem;
  color: #fdfdfd; /* solid, bright, readable on navy */
}

.hero-highlight {
  color: inherit;
  border-bottom: 2px solid #d4a017;
  padding-bottom: 2px;
}
.hero-text p {
  color: #e5eaf3;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  font-size: 0.75rem;
  background-color: rgba(253, 248, 238, 0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  color: #e5eaf3;
}

/* HERO SIDE CARD */
.hero-card {
  background: #fdf8ee;
  color: #102034;
  border-radius: 1.1rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
  border: 1px solid #e4dcc5;
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #12355b;
}

.hero-card p {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.hero-card ul {
  list-style: none;
  color: #374151;
  font-size: 0.86rem;
  margin-bottom: 1rem;
}

.hero-card ul li + li {
  margin-top: 0.25rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px dashed #e5e3da;
  padding-top: 0.75rem;
}

.hero-metric {
  min-width: 120px;
}

.metric-number {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #12355b;
}

.metric-label {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
}




/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.why-card {
  background: #f7f6f2;
  padding: 1.6rem 1.4rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #fdf4d0; /* soft gold-beige */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #c28f12;  /* deeper gold tone */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.why-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  color: #12355b;  /* navy */
 position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
}


.why-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background-color: #d4a017;
  border-radius: 999px;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #444;
}

/* responsive polish */
@media (max-width: 600px) {
  .why-card {
    padding: 1.4rem 1.2rem;
  }
}



/* BUTTONS */

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  background-color: #d4a017;     /* gold */
  color: #111827;                /* dark text */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.primary-btn:hover {
  background-color: #b8850f;     /* darker gold */
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn.primary {
  background-color: #d4a017; /* gold */
  color: #102034;
}

.btn.primary:hover {
  background-color: #12355b;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.btn.secondary {
  background-color: #12355b;
  color: #fdf8ee;
  border-color: #fdf8ee;
}

.btn.secondary:hover {
  background: linear-gradient(90deg, #d4a017, #b8850f);
  color: #111827;
}

.btn.full-width {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  font-size: 0.75rem;
  background-color: rgba(253, 248, 238, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  color: #e5eaf3;
}

/* HERO SIDE CARD */
.hero-card {
  background: #fdf8ee;
  color: #102034;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  border: 1px solid #e4dcc5;
}

.hero-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #12355b;
}

.hero-card p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.hero-card ul {
  list-style: none;
  color: #374151;
  font-size: 0.9rem;
}

.hero-card li + li {
  margin-top: 0.3rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 3rem 0;
}

.section.alt {
  background-color: #ffffff;
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 3px;
  background-color: #d4a017; /* premium gold */
  border-radius: 2px;
}

.section-header p {
  color: #6b7280;
  max-width: 34rem;
}



.section-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e3da;
  margin: 0;
}

/* LAYOUT */
.section-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 2rem;
}

/* ========== ABOUT ========== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.stat-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 1px solid #e5e3da;
  text-align: left;
}

.stat-number {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
  color: #12355b;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
}


/* ========== INDUSTRIES WE SERVE ========== */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
}

.industry-card {
  background-color: #fffdf6;
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid #e5e3da;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);

  flex: 0 1 calc(33.333% - 1.4rem);   /* EXACT: 3 per row */
  max-width: calc(33.333% - 1.4rem);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Wrapper centers the entire grid */
.industry-grid-wrapper {
  display: flex;
  justify-content: center;
}

.industry-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #12355b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: #fdf8ee;
}

.industry-card h3 {
  font-size: 0.98rem;
  color: #12355b;
}

.industry-card p {
  font-size: 0.86rem;
  color: #4b5563;
}

/* optional hover polish */
.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.15s ease;
}


.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
}

.process-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden; /* optional but clean */
}

.process-card {
  background-color: #fffdf6;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #e5e3da;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);

  flex: 0 1 calc(33.333% - 1.4rem);    /* EXACTLY 3 per row */
  max-width: calc(33.333% - 1.4rem);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.process-step {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-color: #12355b;
  color: #fdf8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.process-card h3 {
  font-size: 0.96rem;
  color: #12355b;
}

.process-card p {
  font-size: 0.86rem;
  color: #4b5563;
}

/* optional hover effect */
.process-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.15s ease;
}





/* ========== PRODUCT CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.card {
  background-color: #fffdf6;
  border-radius: 1rem;
  padding: 1.4rem;
  border: 1px solid #e5e3da;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-actions {
  margin-top: auto;           /* pushes buttons to bottom */
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.card-image {
  width: 100%;
  height: 160px;              /* controls how tall the image area is */
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image fits inside the box WITHOUT cropping */
.card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;        /* important: no cropping */
  display: block;
}


.card h3 {
  font-size: 1.1rem;
  color: #12355b;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.card-list {
  list-style: none;
  font-size: 0.85rem;
  color: #374151;
}

.card-list li::before {
  content: "• ";
  color: #d4a017;
}

.card-btn {
  margin-top: auto;
  align-self: flex-start;
  background-color: #12355b;
  color: #fdf8ee;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.card-btn:hover {
  background-color: #0f2743;
}

.note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

/* ========== CHIPS / INDUSTRIES ========== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  background-color: #12355b;
  color: #fdf8ee;
}

/* ========== PROCESS STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}

.step {
  background-color: #fffdf6;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 1px solid #e5e3da;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: #12355b;
  color: #fdf8ee;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #12355b;
}

.step p {
  font-size: 0.85rem;
  color: #4b5563;
}

/* ========== WHY CHOOSE US ========== */
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.bullet h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #12355b;
}

.bullet p {
  font-size: 0.85rem;
  color: #4b5563;
}

/* ========== CONTACT ========== */
.contact-block {
  align-items: flex-start;
}

.contact-info {
  list-style: none;
  font-size: 0.9rem;
  color: #374151;
}

.contact-info li + li {
  margin-top: 0.25rem;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #e5e3da;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
  background-color: #fdfdfb;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #12355b;
  box-shadow: 0 0 0 1px #12355b20;
}


/* ========== CONTACT SECTION ========== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.contact-details h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: #12355b;
}

.contact-tagline {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  color: #6b7280;
}

.contact-line {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  color: #374151;
}

.contact-line a {
  color: #12355b;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.85rem;
  margin-top: 1.2rem;
  color: #6b7280;
}

/* Form */
.contact-form {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  outline: none;
  background-color: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* Clean, simple styling for select (Product Category) */
.form-field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  background-color: #f9fafb;
  color: #111827;
  outline: none;
  cursor: pointer;
}

/* Focus state – same as other inputs */
.form-field select:focus {
  border-color: #d4a017; /* your gold */
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(212, 160, 23, 0.2);
}


.form-field input:focus,
.form-field textarea:focus {
  border-color: #d4a017;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(212, 160, 23, 0.2);
}

.contact-form .primary-btn {
  margin-top: 0.6rem;
}


.contact-form button.primary-btn {
  background-color: #d4a017 !important;
  color: #111827 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 0.75rem 1.6rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  cursor: pointer;
}

.contact-form button.primary-btn:hover {
  background-color: #b8850f !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}


/* Contact status message */
.contact-status {
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.contact-status.success {
  background-color: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.contact-status.error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.4rem 1.2rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid #e5e3da;
  padding: 1.75rem 0 1.5rem;
  background-color: #f5ebd5;
}

.footer-small {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #7c8699;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.85rem;
}

.footer-block {
  min-width: 200px;
  max-width: 320px;
}

.footer-block h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: #12355b;
}

.footer-block p {
  font-size: 0.85rem;
  color: #42516a;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 0.2rem;
}

.footer-list a {
  color: #42516a;
}

.footer-list a:hover {
  color: #12355b;
}

.footer-bottom {
  margin-top: 1.25rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #42516a;
}

.footer-small {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: #7c8699;
}


.modal-backdrop {
  display: none;                 /* hidden by default */
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.45); /* dark overlay */
  justify-content: center;
  align-items: center;
  z-index: 900;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background-color: #ffffff;
  max-width: 720px;
  width: 90%;
  padding: 1.8rem 1.6rem;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  max-height: 80vh;
  overflow-y: auto;
}

.modal h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #12355b;
}

.modal h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  color: #12355b;
}

.modal p {
  font-size: 0.9rem;
  color: #374151;
}

.modal ul {
  margin-left: 1rem;
  padding-left: 0.5rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.modal ul li + li {
  margin-top: 0.15rem;
}

.modal-close {
  margin-bottom: 0.8rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: #64748b;
}

.modal-close:hover {
  color: #4b5563;
}

.modal-footer-text {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: #6b7280;
}



/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

 .hero-card {
    margin-top: 0.75rem;
  }
  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background-color: #fdf8ee;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border-bottom-left-radius: 0.75rem;
    border-left: 1px solid #e5e3da;
    border-bottom: 1px solid #e5e3da;
    display: none;
  }

  .nav-links.nav-open {
    display: flex;
  }
}


/* ===== ANIMATIONS ===== */

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide-up (for cards) */
.slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Soft zoom on buttons */
.btn {
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Soft hover lift for cards */
.card:hover,
.industry-card:hover,
.process-card:hover {
  transform: translateY(-3px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-img {
  width: 30px;
  height: 30px;
}

/* Tooltip */


.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-img {
    width: 32px;
    height: 32px;
  }
}



/* Mobile Adjustments */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-img {
    width: 30px;
    height: 30px;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(12, 32, 58, 0.97); /* dark navy */
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.35);
}

.cookie-text {
  max-width: 720px;
}

.cookie-btn {
  flex-shrink: 0;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: #d4a017;
  color: #111827;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.cookie-btn:hover {
  background-color: #b8850f;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-btn {
    align-self: flex-end;
  }
}

#cookie-banner {
  display: none;
}

/* Permanent WhatsApp Help Bubble */
.whatsapp-help-bubble {
  position: fixed;
  right: 90px; 
  bottom: 28px;
  background-color: #12355b; 
  color: #ffffff;
  padding: 8px 14px;
  font-size: 0.78rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  opacity: 1;          /* Always visible */
  transform: translateY(0);   
  z-index: 998;
  white-space: nowrap;
}



/* ========== BLOG LAYOUT ========== */

.blog-hero {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(135deg, #0b1a30 0%, #12355b 55%, #f3e5c2 100%);
  color: #fdfdfd;
}

.blog-breadcrumb {
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
  color: #e5eaf3;
}

.blog-breadcrumb a {
  color: #f9fafb;
  text-decoration: underline;
}

.blog-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.blog-intro {
  max-width: 40rem;
  font-size: 0.95rem;
  color: #e5eaf3;
}

.blog-meta {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #c7d2fe;
}



/* Responsive */
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .whatsapp-help-bubble {
    right: 80px;
    bottom: 24px;
    font-size: 0.75rem;
  }
}


/* Mobile adjustment */
@media (max-width: 600px) {
  .whatsapp-help-bubble {
    right: 80px;
    bottom: 24px;
    font-size: 0.75rem;
  }
}




/* Mobile adjustments */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  
}


@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);   /* tablets → 2 per row */
  }
}

@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;   /* mobile → 1 per row */
  }
}

@media (max-width: 900px) {
  .industry-card {
    flex: 0 1 calc(50% - 1.4rem);   /* 2 per row on tablets */
    max-width: calc(50% - 1.4rem);
  }
}

@media (max-width: 600px) {
  .industry-card {
    flex: 0 1 100%;   /* full width on mobile */
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .process-grid {
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .process-card {
    flex: 0 1 calc(50% - 1.4rem);   /* 2 per row on tablet */
    max-width: calc(50% - 1.4rem);
  }
}

@media (max-width: 600px) {
  .process-card {
    flex: 0 1 100%;   /* full width on mobile */
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .form-field select {
    font-size: 0.9rem;
  }
}
/* On very small screens if needed */
@media (max-width: 600px) {
  .form-field select {
    font-size: 0.88rem;
  }
}
