* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Proxima Nova', Helvetica, Arial, sans-serif !important;
}

/* ═══════════════════════════
   SHARED HEADER / NAVBAR — matches data-analytics.html / cyber-security.html
═══════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  box-shadow: none;
  height: 80px;
}
#header .flex-item { display: flex; align-items: center; }
.logo-fixed a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-fixed img { height: 65px; width: auto; display: block; }
#header a, #header a:hover, #header a:focus, #header a:active, #header a:visited,
#header button, #header button:focus, #header button:active {
  outline: none !important; box-shadow: none !important;
}
#header *::-moz-focus-inner { border: 0 !important; }

nav.main-nav { display: flex; align-items: center; }
ul.main-nav {
  display: flex !important; align-items: center !important; gap: 10px;
  list-style: none; padding: 0; margin: 0;
  width: auto !important; position: static !important; float: none !important;
}
ul.main-nav > li { position: relative; }
ul.main-nav > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 22px; border-radius: 7px;
  text-decoration: none; color: #ffffff;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.2s, background 0.2s; white-space: nowrap; cursor: pointer;
  outline: none !important; box-shadow: none !important; border: none !important;
  -webkit-tap-highlight-color: transparent;
}
ul.main-nav > li > a:focus,
ul.main-nav > li > a:focus-visible,
ul.main-nav > li > a:active {
  outline: none !important; box-shadow: none !important; border: none !important;
}
ul.main-nav > li > a:hover,
ul.main-nav li.drop-down.open > a {
  color: #fff !important;
  background: linear-gradient(135deg, #7c3aed 0%, #00897b 100%) !important;
  border-radius: 7px; border-color: transparent !important;
}

ul.main-nav li.drop-down .dropdown-content {
  display: none;
  position: absolute; top: calc(100% + 4px); left: 0;
  background: #fff;
  border: 1.5px solid #EDE9FE;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(124,58,237,0.13), 0 2px 8px rgba(0,0,0,0.07);
  min-width: 210px; padding: 8px; list-style: none; z-index: 600;
  animation: dropIn 0.18s ease;
}
@keyframes dropIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
ul.main-nav li.drop-down .dropdown-content::before {
  content:''; position:absolute; top:-7px; left:18px;
  width:13px; height:13px; background:#fff;
  border-left:1.5px solid #EDE9FE; border-top:1.5px solid #EDE9FE;
  transform:rotate(45deg); border-radius:2px;
}
ul.main-nav li.drop-down.open .dropdown-content { display: block; }
ul.main-nav .dropdown-content li {
  list-style: none !important;
  margin-bottom: 1px !important;
}
ul.main-nav .dropdown-content li:last-child { margin-bottom: 0 !important; }
ul.main-nav .dropdown-content li a {
  display: flex !important; align-items: center; gap: 9px; padding: 9px 16px !important;
  font-size: 0.85rem !important; color: #374151 !important; text-decoration: none !important;
  border-radius: 8px; transition: color 0.15s, background 0.15s; font-weight: 500 !important;
  background: transparent !important; text-transform: none !important;
  letter-spacing: normal !important; width: auto !important; height: auto !important;
  opacity: 1 !important; visibility: visible !important;
}
ul.main-nav .dropdown-content li a::before { display: none !important; content: none !important; }
ul.main-nav .dropdown-content li a:hover { color: #7c3aed !important; background: #F5F3FF !important; }
ul.main-nav .dropdown-content li a.current { color: #7c3aed !important; font-weight: 600 !important; background: #F5F3FF !important; }

.user-logo-container { display: flex; align-items: center; padding: 0 16px 0 8px; justify-content: flex-end; }
.user-logo-button {
  background: none; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s;
}
.user-logo-button:hover { border-color: #7c3aed; }
.user-logo-button img { width: 20px; height: 20px; object-fit: contain; border-radius: 50%; }
.user-icon-svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.5; }

.mobile-nav {
  position: fixed; top: 80px; left: 0; right: 0; z-index: 299;
  background: #0a0a18; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: none;
}
.mobile-nav ul { list-style: none; padding: 8px 0; }
.mobile-nav ul li a { display: block; padding: 11px 24px; color: #fff; font-size: 0.88rem; font-weight: 500; text-decoration: none; }
.mobile-nav ul li a:hover { color: #7c3aed; }
.d-none { display: none; }
.d-lg-none { display: none; }
@media(max-width:992px){
  .d-lg-block { display: none !important; }
  .d-lg-none { display: block !important; }
}

/* Ask AI floating button */
.ask-ai-float {
  position:fixed; bottom:24px; right:24px; z-index:500;
  display:flex; align-items:center; gap:6px; padding:8px 16px; border-radius:8px;
  background:linear-gradient(135deg,#3b0080 0%,#007a6e 100%); color:#fff;
  border:1px solid rgba(255,255,255,0.16); font-size:0.72rem; font-weight:700;
  text-decoration:none; cursor:pointer; box-shadow:0 6px 26px rgba(59,0,128,0.4);
  letter-spacing:0.5px; transition:transform 0.2s, box-shadow 0.2s;
}
.ask-ai-float:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(59,0,128,0.5); }
.ask-ai-float .plus { font-size:1rem; }

/* ── HERO — top-anchored, emerald/gold gradient ── */
.hero {
  position: relative;
  display: block;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 110px 24px 60px;
  background: linear-gradient(135deg, #2d0a1f 0%, #6b1f43 24%, #a8355c 46%, #c2437a 62%, #e08e6d 82%, #f5c98e 100%);
}
.cr-orb { position:absolute; border-radius:50%; pointer-events:none; filter:blur(2px); }
.cr-orb-a {
  width:560px; height:560px; top:-220px; left:-160px;
  background:radial-gradient(circle, rgba(16,185,129,0.30) 0%, transparent 65%);
  animation:cr-pulse 9s ease-in-out infinite alternate;
}
.cr-orb-b {
  width:480px; height:480px; top:20px; right:-140px;
  background:radial-gradient(circle, rgba(212,160,23,0.28) 0%, transparent 65%);
  animation:cr-pulse 11s ease-in-out infinite alternate-reverse;
}
@keyframes cr-pulse { from{opacity:.5;transform:scale(1)} to{opacity:1;transform:scale(1.15)} }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cr-fade { opacity: 0; transform: translateY(26px); animation: cr-fadeUp .8s ease forwards; }
@keyframes cr-fadeUp { to { opacity: 1; transform: translateY(0); } }

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 25px;
  border: 1px solid #34d399;
  color: #34d399;
  margin-bottom: 20px;
}

.hero h1 { font-size: 48px; }

.hero h1 span {
  background: linear-gradient(45deg, #34d399, #d4a017);
  background-clip:text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 20px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  .cr-orb, .cr-fade {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── APPLY SECTION ── */
.apply-section {
  background: #f5f7fb;
  padding: 60px 20px;
}

/* ── PROGRESS BAR ── */
.progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 6px;
}

.step {
  padding: 10px 18px;
  border-radius: 25px;
  background: #e5e7eb;
  font-size: 14px;
  color: #555;
  transition: 0.3s;
}

.step.active {
  background: #29ABE2;
  color: #fff;
  box-shadow: 0 4px 16px rgba(41,171,226,0.4);
}

.step.done {
  background: #d0effa;
  color: #0a5c80;
  border: 1.5px solid #29ABE2;
}

.line {
  width: 60px;
  height: 2px;
  background: #d1d5db;
  margin: 0 6px;
}

.line.done-line {
  background: #29ABE2;
}

/* ── FORM CONTAINER ── */
.form-container {
  max-width: 850px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-container h2 {
  margin-bottom: 25px;
  font-size: 22px;
  color: #111;
  font-weight: 800;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { flex: 1; }

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9fafb;
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  transition: 0.2s;
  color: #222;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #29ABE2;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(41,171,226,0.15);
}

/* ── SELECT WRAPPER ── */
.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9fafb;
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  color: #888;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: 0.2s;
}

.select-wrap select:focus {
  border-color: #29ABE2;
  background: #fff;
  color: #222;
  box-shadow: 0 0 0 3px rgba(41,171,226,0.15);
}

.select-wrap select option {
  color: #222;
}

.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}

/* ── TEXTAREA ── */
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  color: #222;
  background: #f9fafb;
  outline: none;
  resize: vertical;
  transition: 0.2s;
  line-height: 1.6;
}

.form-group textarea::placeholder { color: #b0bcc8; }

.form-group textarea:focus {
  border-color: #29ABE2;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(41,171,226,0.15);
}

/* ── BUTTONS ── */
.btn-area {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.next-btn {
  padding: 12px 30px;
  border-radius: 10px;
  border: none;
  background: #29ABE2;
  color: #fff;
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

.next-btn:hover {
  background: #1a8cbf;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41,171,226,0.4);
}

/* ── BACK / PREVIOUS BUTTON ── */
.Previous-btn,
.previous-btn,
.back-btn {
  padding: 12px 28px;
  border-radius: 10px;
  border: 1.5px solid #29ABE2;
  background: #ffffff;
  color: #29ABE2;
  font-size: 14px;
  font-weight: 600;
  font-family: "Segoe UI", sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

.Previous-btn:hover,
.previous-btn:hover,
.back-btn:hover {
  background: #29ABE2;
  color: #fff;
}

/* ── PROGRAM SELECTION ── */
.program-label {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
}

.program-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #ffffff;
}

.program-card:hover {
  border-color: #29ABE2;
  background: #f0f9ff;
}

.program-card:has(input:checked) {
  border-color: #29ABE2;
  background: #f0f9ff;
}

.program-card input[type="radio"] {
  accent-color: #29ABE2;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.program-card-inner { flex: 1; }

.program-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.prog-clock { font-size: 15px; }

.prog-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.badge-popular {
  background: #e0f4fd;
  color: #0a6c9e;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #29ABE2;
}

.prog-desc {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.6;
}

.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #f0f9ff;
  color: #0a6c9e;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #29ABE2;
}

/* ── REVIEW PAGE ── */
.review-container {
  padding: 40px 44px;
}

.review-section {
  border: 1.5px solid #e8ecf1;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 20px;
  background: #ffffff;
}

.review-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.review-section-icon {
  width: 34px;
  height: 34px;
  background: #d0effa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.review-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-field-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

.review-field-value {
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
}

.review-field-value.bold {
  font-weight: 700;
  color: #0f172a;
}

.review-confirm {
  border: 1.5px solid #e8ecf1;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
  background: #ffffff;
}

.confirm-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.confirm-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #29ABE2;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.review-btn-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.prev-btn {
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid #29ABE2;
  background: #ffffff;
  color: #29ABE2;
  font-size: 14px;
  font-weight: 600;
  font-family: "Segoe UI", sans-serif;
  cursor: pointer;
  transition: 0.2s;
}

.prev-btn:hover {
  background: #29ABE2;
  color: #fff;
}

.submit-btn {
  padding: 13px 32px;
  border-radius: 10px;
  border: none;
  background: #29ABE2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Segoe UI", sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #1a8cbf;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41,171,226,0.4);
}

/* ── SUCCESS CARD ── */
.success-card {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.success-card h2 {
  font-size: 28px;
  color: #29ABE2;
  margin-bottom: 12px;
}

.success-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* ── FOOTER (matches Cyber Security page) ── */
.footer {
  background-color: #05060d;
  padding: 60px 80px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-left { flex: 1; }

.footer-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 18px;
}

.contact p i {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.contact p:nth-child(1) i,
.contact p:nth-child(2) i {
  color: #e74c3c;
}

.contact p:nth-child(3) i {
  color: #29ABE2;
}

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 24px;
}

.footer .social-icons {
  display: flex;
  gap: 12px;
}

.footer .social-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  background: none;
}

.footer .social-icons a:hover {
  background: #29ABE2;
  color: #fff;
  border-color: #29ABE2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #29ABE2; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #header .flex-container { padding: 0 16px !important; }
  .footer { padding: 48px 32px 0; }
  .footer-container { flex-direction: column; gap: 40px; }
  .footer-right { padding-left: 0; }
  .form-row { flex-direction: column; }
}

@media (max-width: 600px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-btn-area { flex-direction: column; }
  .prev-btn, .submit-btn { width: 100%; text-align: center; }
}

@media (max-width: 560px) {
  .footer { padding: 40px 20px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 12px; }
  .hero h1 { font-size: 28px; }
  .hero { padding: 140px 20px 70px; }
}

/* ── ERROR MESSAGES ── */
.error-msg {
  display: block;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
}

/* ── LOGIN MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 30, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

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

.login-card {
  background: #fff;
  border-radius: 18px;
  padding: 48px 44px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: slideUp 0.28s ease;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}

.close-btn:hover { color: #333; }

.lock-icon {
  width: 64px;
  height: 64px;
  background: #29ABE2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(41,171,226,0.4);
}

.lock-icon img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.login-card h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0f2334;
  margin-bottom: 6px;
}

.login-subtitle {
  text-align: center;
  font-size: 13.5px;
  color: #7a8fa6;
  margin-bottom: 28px;
}

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 7px;
}

.input-wrap {
  position: relative;
  margin-bottom: 6px;
}

.input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #29ABE2;
  font-size: 14px;
}

.input-wrap input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid #dde3ec;
  border-radius: 10px;
  font-size: 14px;
  color: #1e2d3d;
  outline: none;
  background: #f9fbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-wrap input:focus {
  border-color: #29ABE2;
  box-shadow: 0 0 0 3px rgba(41,171,226,0.15);
  background: #fff;
}

.input-wrap input::placeholder { color: #b0bec9; }

.login-btn {
  width: 100%;
  padding: 13px;
  background: #29ABE2;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, transform 0.15s;
}

.login-btn:hover {
  background: #1a8cbf;
  transform: translateY(-1px);
}

.help-text {
  text-align: center;
  font-size: 12.5px;
  color: #8a9cb0;
  margin-top: 20px;
}

.help-text a {
  color: #29ABE2;
  text-decoration: none;
  font-weight: 600;
}

.security-note {
  text-align: center;
  font-size: 12px;
  color: #aab5c0;
  margin-top: 16px;
}

/* FOOTER LOGO ONLY - bigger, centered */
.footer-logo-only {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-logo-only img {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  #header { height: auto; padding: 10px 15px; background: rgba(0, 0, 0, 0.95); }
  #header .flex-container { flex-wrap: nowrap; padding: 0 !important; }
  #header .logo-fixed img { max-height: 50px; margin: 0; }
  ul.main-nav.d-none.d-lg-block,
  nav.main-nav.float-right.d-none.d-lg-block { display: none !important; }
  .mobile-nav { display: block !important; }

  .footer { padding: 20px 15px 10px; }
  .footer-container { flex-direction: column; gap: 30px; padding-bottom: 20px; }
  .footer-left, .footer-right { width: 100%; padding-left: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 15px; padding-top: 10px; margin-top: 10px; }
  .footer-links { flex-wrap: wrap; justify-content: flex-start; gap: 10px; }
}

#header nav.main-nav,
#header ul.main-nav {
  position: static !important;
  width: auto !important;
  background: transparent !important;
}

#header .flex-container {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.flex-item-1 {
  flex: 0 0 auto;
}

.flex-item-2 {
  flex: 0 0 auto;
  margin-left: auto;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer .social-icons a {
  color: #ccc;
}

.footer .social-icons a:hover {
  color: #fff;
}
