* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --accent: #ed593f;       /* Brand accent */
  --text-dark: #111827;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Merriweather', serif;
  --brand: #ed593f;
  --brand-dark: #d5604b;
  --brand-gradient: linear-gradient(90deg, #f96, #ff5e62);
  --ink: #111827;
  --muted: #555;
  --bg: #fcfcfc;
  --radius: 14px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 24px rgba(0, 0, 0, 0.15);
  --container: 1320px;
  --container: 1320px;
  --gap: 32px;
  --rail-w: 220px;
  --sidebar-w: 320px;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

/* -------------------
   Layout
------------------- */
.container,
.wrap {
  max-width: var(--container);
  margin: 60px auto; /* fixed */
}

/* -------------------
   Header / Nav
------------------- */
header {
  position: relative; /* default, so it scrolls with the page */
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 50;
  padding: 15px 0;
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.nav-links a {
  margin-left: 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
}
.btn-nav {
  padding: 8px 20px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 5px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: 0.25s ease;
  border: none;
}
.btn-nav:hover {
  background: var(--brand-dark); /* keep consistent */
}

/* -------------------
   Hero Section
------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  background: url('https://cdn.prod.website-files.com/659415b36df8ea43c38776dc/659d44f3bc5fef03f8c8310b_ps-blog-header-bg-_1_-p-1600.jpeg') no-repeat center/cover;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 600px;
  padding: 40px;
  margin-left: 60px;
  animation: fadeIn 1.2s ease forwards;
}
.hero h1 {
  font-size: 50px;
  margin-bottom: 16px;
  font-weight: 800;
}
.hero p {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.5;
}

/* -------------------
   Search
------------------- */
.searchbar {
  position: relative;
  max-width: 400px;
}
.searchbar input {
  width: 100%;
  padding: 17px 14px 17px 42px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 15px;
}
.searchbar svg {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: #555;
}

/* -------------------
   Grid & Cards
------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 55px;
}
.card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}
.card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card .body {
  padding: 14px 16px;
}
.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}
.meta img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.card h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 6px;
  font-weight: 700;
}

/* -------------------
   Subscribe Section
------------------- */
.subscribe-section {
  margin: 80px 0;
  padding: 25px 160px;
}
.subscribe-box {
  width: 100%;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at -10% -10%, #F96, #ff5e62 60%);
  border-radius: 32px;
  overflow: hidden;
}
.subscribe-inner {
  max-width: 820px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 20px;
  border-radius: 24px;
  background-image: url("https://cdn.prod.website-files.com/659415b36df8ea43c38776dc/66582518b90f2cb81df4764d_bg-pattern-get-started-block.svg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
.subscribe-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #f0f6ff;
}
.subscribe-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 20px;
}
.subscribe-btn {
  background: var(--brand-dark);
  transition: all .3s ease;
}
.subscribe-btn:hover {
  background: #91483a;
}

/* Checks inside subscribe */
.subscribe-checks {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.check-item img {flex-shrink: 0;}

/* Logos inside subscribe */
.subscribe-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.subscribe-logos img {
  max-height: 38px;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: all .3s ease;
}
.subscribe-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* -------------------
   Footer
------------------- */
.site-footer {
  background: #111827;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  margin-top: 50px;
}
.site-footer nav a {
  color: #ccc;
  margin: 0 6px;
  font-size: 14px;
}
.site-footer nav a:hover {
  color: #fff;
}

/* -------------------
   Sticky Button
------------------- */
.sticky-demo {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.sticky-demo:hover {
  background: #333;
}

/* -------------------
   Animations
------------------- */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.card:nth-child(1) { animation-delay: .15s }
.card:nth-child(2) { animation-delay: .3s }
.card:nth-child(3) { animation-delay: .45s }
.card:nth-child(4) { animation-delay: .6s }
.card:nth-child(5) { animation-delay: .75s }
.card:nth-child(6) { animation-delay: .9s }

/* -------------------
   Responsive
------------------- */
@media (max-width: 1024px) {
  .hero { height: auto; padding: 60px 20px }
  .hero-inner { margin-left: 0; padding: 20px }
  .hero h1 { font-size: 38px }
}
@media (max-width: 768px) {
  .grid { gap: 28px }
  .hero-inner { max-width: 100% }
  .subscribe-section { padding: 20px }
}
@media (max-width: 480px) {
  .nav-links a { margin-left: 12px }
  .hero h1 { font-size: 28px }
  .subscribe-content h2 { font-size: 28px }
  .subscribe-logos { gap: 20px }
}








/* ======================================================
   COMMENTS AREA — NB Blog Lucide Version
   ====================================================== */


/* --- Wrapper --- */
.comments-area {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  font-family: var(--font-sans);
}

/* --- Heading --- */
.comments-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  border-bottom: 2px solid #f3f4f6;
  padding-bottom: 0.75rem;
}

/* --- Comment list --- */
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each comment card */
.comment-list li.comment {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.comment-list li.comment:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* --- Author Section --- */
.comment-author.vcard {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.comment-author.vcard img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid #f3f4f6;
}

/* If no avatar image */
.comment-author.vcard .avatar-none {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* --- Meta (author name + date) --- */
.comment-meta {
  display: flex;
  flex-direction: column;
}

.comment-meta .fn {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.comment-meta .fn a {
  color: inherit;
  text-decoration: none;
}

.comment-metadata {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 2px;
}

.comment-metadata a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.comment-metadata a:hover {
  color: var(--accent);
}

.comment-metadata .icon {
  width: 16px;
  height: 16px;
  color: var(--text-light);
}

/* --- Comment text --- */
.comment-content {
  font-size: 1rem;
  color: #374151;
  line-height: 1.65;
  margin-top: .75rem;
}
.comment-content p:last-child {
  margin-bottom: 0;
}

/* --- Reply link --- */
.reply {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: .75rem;
}
.reply .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.comment-reply-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.comment-reply-link:hover {
  color: #d5604b;
  text-decoration: underline;
}

/* --- Highlight author/admin comments --- */
.comment.bypostauthor {
  border-left: 4px solid var(--accent);
  background: #fffdf7;
}

/* --- Nested replies --- */
.comment-list .children {
  margin-left: 2rem;
  border-left: 2px dashed var(--border);
  padding-left: 1rem;
}

/* --- Pagination --- */
.comment-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.comment-navigation a {
  color: var(--accent);
  text-decoration: none;
}
.comment-navigation a:hover {
  text-decoration: underline;
}

/* --- Comment form --- */
.comment-respond {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.comment-respond h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Form layout */
.comment-form {
  display: grid;
  gap: 1rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  font-family: var(--font-sans);
  transition: border-color .2s, box-shadow .2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,180,0,0.15);
  outline: none;
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Cookie consent checkbox */
.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: var(--text-light);
}

/* Submit button */
.form-submit {
  text-align: right;
}

.form-submit input[type="submit"] {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background .2s, transform .1s;
}

.form-submit input[type="submit"]:hover {
  background: linear-gradient(90deg, #f96, #ff5e62);
  transform: translateY(-1px);
}

/* --- Responsive adjustments --- */
@media (max-width: 640px) {
  .comments-area {
    padding: 1.5rem;
  }
  .comment-author.vcard {
    flex-direction: row;
    align-items: flex-start;
  }
  .comment-list .children {
    margin-left: 1rem;
  }
}
/* ======================================================
   COMMENT REPLY TITLE (Leave a Reply header)
   ====================================================== */

.comment-reply-title {
  font-family: 'Merriweather', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  line-height: 1.3;
}

/* Optional Lucide icon (if you decide to add one before text) */
.comment-reply-title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background: currentColor;
  mask: url('https://unpkg.com/lucide-static/icons/message-circle.svg') no-repeat center / contain;
  -webkit-mask: url('https://unpkg.com/lucide-static/icons/message-circle.svg') no-repeat center / contain;
  opacity: 0.8;
}

/* "to <a>" link styling */
.comment-reply-title a {
  color: #ed593f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.comment-reply-title a:hover {
  color: #d5604b;
  text-decoration: underline;
}

/* "Cancel reply" link */
.comment-reply-title small {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.comment-reply-title small a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s;
}

.comment-reply-title small a:hover {
  color: #ef4444;
  text-decoration: underline;
}

/* Optional subtle underline divider below the title */
.comment-reply-title::after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background: #ed593f;
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* ======================================================
   LOGGED-IN NOTICE ABOVE COMMENT FORM
   ====================================================== */

.logged-in-as {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  position: relative;
}

/* Add Lucide user icon before text */
.logged-in-as::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  background: currentColor;
  mask: url('https://unpkg.com/lucide-static/icons/user.svg') no-repeat center / contain;
  -webkit-mask: url('https://unpkg.com/lucide-static/icons/user.svg') no-repeat center / contain;
  opacity: 0.8;
}

/* Links inside message */
.logged-in-as a {
  color: #ed593f; /* brand accent */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.logged-in-as a:hover {
  color: #d5604b;
  text-decoration: underline;
}

/* "Required fields" note */
.logged-in-as .required-field-message {
  margin-left: auto;
  font-size: 0.85rem;
  color: #9ca3af;
}

.logged-in-as .required-field-message .required {
  color: #ef4444;
  font-weight: 600;
  margin-left: 3px;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .logged-in-as {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .logged-in-as .required-field-message {
    margin-left: 0;
  }
}


/* ======================================================
   SEARCH PAGE STYLING
   ====================================================== */

.search-results {
  font-family: 'Inter', sans-serif;
}

/* Header */
.search-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.search-header h1 {
  font-family: 'Merriweather', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.search-header h1 .query {
  color: #ed593f;
}

.search-header i {
  width: 22px;
  height: 22px;
  color: #ed593f;
}

/* Search form */
.search-form {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  padding: 4px 10px 4px 16px;
}

.search-form input[type="search"] {
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 10px;
  width: 240px;
  color: #111827;
  background: transparent;
}

.search-form button {
  border: none;
  background: #ed593f;
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.search-form button:hover {
  background: linear-gradient(90deg, #f96, #ff5e62);
}

.search-form button i {
  width: 18px;
  height: 18px;
}

/* Results grid */
.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.search-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.search-card .thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.search-card .body {
  padding: 1rem 1.25rem;
}

.search-card .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.search-card .meta i {
  width: 16px;
  height: 16px;
  color: #9ca3af;
}

.search-card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.search-card h2 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.search-card:hover h2 a {
  color: #ed593f;
}

.search-card p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Pagination */
.pagination {
  margin-top: 3rem;
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.pagination .page-numbers:hover {
  background: #ed593f;
  color: #111;
  border-color: #ed593f;
}
.pagination .page-numbers.current {
  background: #ed593f;
  color: #111;
  border-color: #ed593f;
}

/* No results */
.no-results {
  text-align: center;
  padding: 3rem 0;
  color: #6b7280;
  font-size: 1rem;
}
.no-results a {
  color: #ed593f;
  text-decoration: none;
  font-weight: 500;
}
.no-results a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
  .search-header h1 {
    font-size: 1.35rem;
  }
  .search-form input[type="search"] {
    width: 180px;
  }
  .search-card .thumb img {
    height: 160px;
  }
}


/* ======================================================
   ARCHIVE PAGE
   ====================================================== */

.archive-page {
  margin-top: 3rem;
  font-family: 'Inter', sans-serif;
}

/* Header */
.archive-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.archive-header h1 {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.archive-header i {
  width: 22px;
  height: 22px;
  color: #ed593f;
}

.archive-description {
  font-size: 1rem;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

/* Cards */
.archive-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.archive-card .thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Body */
.archive-card .body {
  padding: 1rem 1.25rem;
}

/* Meta info */
.archive-card .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.archive-card .meta i {
  width: 16px;
  height: 16px;
  color: #9ca3af;
}

/* Title */
.archive-card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.archive-card h2 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.archive-card:hover h2 a {
  color: #ed593f;
}

/* Excerpt */
.archive-card p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Pagination */
.pagination {
  margin-top: 3rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination .page-numbers:hover {
  background: #ed593f;
  color: #fff;
  border-color: #ed593f;
}

.pagination .page-numbers.current {
  background: #ed593f;
  color: #fff;
  border-color: #ed593f;
}

/* No results */
.no-results {
  text-align: center;
  padding: 3rem 0;
  color: #6b7280;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
  .archive-header h1 {
    font-size: 1.4rem;
  }
  .archive-card .thumb img {
    height: 160px;
  }
}
/* ======================================================
   404 PAGE
   ====================================================== */
.not-found {
  text-align: center;
  padding: 6rem 1rem;
  font-family: 'Inter', sans-serif;
}

.error-content i {
  width: 60px;
  height: 60px;
  color: #ed593f;
  margin-bottom: 1.5rem;
}

.error-content h1 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.error-content p {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.error-content .actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-content a {
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}

.error-content .btn-home {
  background: #ed593f;
  color: #fff;
}

.error-content .btn-blog {
  border: 1px solid #ed593f;
  color: #ed593f;
}

.error-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-page {
  margin-top: 3rem;
  font-family: 'Inter', sans-serif;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero i {
  width: 48px;
  height: 48px;
  color: #ed593f;
  margin-bottom: 1rem;
}

.contact-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.contact-hero p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  font-weight: 500;
  color: #374151;
  display: block;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ed593f;
  box-shadow: 0 0 0 3px rgba(237,89,63,0.15);
  outline: none;
}

.btn-submit {
  background: #ed593f;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

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

#form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-item i {
  width: 22px;
  height: 22px;
  color: #ed593f;
  margin-top: 2px;
}

.info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 2px;
}

.info-item p,
.info-item a {
  color: #6b7280;
  font-size: 0.95rem;
  text-decoration: none;
}

.info-item a:hover {
  color: #ed593f;
}

.map iframe {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================================
   CONTACT FORM THANK YOU ANIMATION
   ====================================================== */

#thankyou-state {
  text-align: center;
  padding: 2rem 1rem;
}

#thankyou-state h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 1rem 0 0.5rem;
}

#thankyou-state p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Checkmark animation */
.checkmark {
  width: 80px;
  height: 80px;
  stroke-width: 2;
  stroke: #ed593f;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #ed593f;
  animation: scaleIn 0.5s ease-in-out both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #ed593f;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}
@keyframes scaleIn {
  0%, 100% { transform: none; }
  50% { transform: scale(1.1); }
}


/* ======================================================
   TRUST & LEGAL TEMPLATE (Privacy, Terms, etc.)
   ====================================================== */

.trust-legal-page {
  margin-top: 3rem;
  font-family: 'Inter', sans-serif;
}

.trust-legal-page .content-area {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
}

/* Main Content */
.legal-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.legal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.legal-header i {
  width: 48px;
  height: 48px;
  color: #ed593f;
  margin-bottom: 0.75rem;
}

.legal-header h1 {
  font-family: 'Merriweather', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

/* Content Typography */
.legal-body h2,
.legal-body h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #111827;
  margin-top: 1.75rem;
  font-size: 1.25rem;
}

.legal-body p {
  color: #4b5563;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.legal-body ul {
  margin: 0.75rem 0 1rem 1.5rem;
  color: #4b5563;
}

.legal-body a {
  color: #ed593f;
  text-decoration: none;
}
.legal-body a:hover {
  text-decoration: underline;
}

/* Sidebar */
.right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Subscribe Card */
.subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.subscribe-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
}

.subscribe-form button {
  background: #ed593f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.subscribe-form button:hover {
  background: #d8482d;
}

.subscribe-note {
  color: #9ca3af;
  font-size: 0.85rem;
}

/* Latest Articles */
.latest-posts h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.latest-posts h3 i {
  width: 18px;
  height: 18px;
  color: #ed593f;
}

.latest-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.latest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.latest-item .thumb img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.latest-item .title {
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.latest-item:hover .title {
  color: #ed593f;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-legal-page .content-area {
    grid-template-columns: 1fr;
  }
  .right-sidebar {
    margin-top: 2rem;
  }
}







/* ======================================================
   PREMIUM NB BLOG FOOTER
   ====================================================== */
/* ======================================================
   NB BLOG FOOTER (Tight Width + Iconic List Version)
   ====================================================== */

.nb-footer {
  position: relative;
  background: radial-gradient(ellipse at top, #181818 0%, #0e0e0e 80%);
  color: #e5e7eb;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.nb-footer .footer-bg {
  position: absolute;
  inset: 0;
  background: url('https://cdn.prod.website-files.com/636496d3f0ebfdaba9784655/681aadf702863e74ef7e283c_580568535c3241197c59edbdc95c05ba_bg-stripes.svg') center/cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}

.nb-footer::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(237,89,63,0.25) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

/* Newsletter Bar (same as before but slightly narrower) */
.newsletter-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.75rem 1rem 1.5rem;
  position: relative;
  z-index: 2;
}

.newsletter-bar .container {
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-bar h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.newsletter-bar i {
  color: #ed593f;
  width: 18px;
  height: 18px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto 0.5rem;
  gap: 0.4rem;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 0.9rem;
}

.newsletter-form button {
  background: #ed593f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
}
.newsletter-form button:hover {
  background: #d64a32;
}

.newsletter-bar p {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Footer content */
.footer-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  padding: 2.25rem 0 1.75rem;
  position: relative;
  z-index: 2;
}

.footer-logo img {
  height: 42px;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.35rem;
}

.footer-col ul li i {
  width: 14px;
  height: 14px;
  color: #ed593f;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}
.footer-col ul li a:hover {
  color: #ed593f;
}

.footer-col.about p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}
.social-icons a {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: #ed593f;
  transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1rem 1rem 1.1rem;
  font-size: 0.85rem;
  color: #9ca3af;
  position: relative;
  z-index: 2;
}

.footer-bottom .crafted {
  margin-top: 0.15rem;
  font-size: 0.85rem;
}
.footer-bottom i {
  color: #ed593f;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  .footer-content {
    padding: 2rem 0 1rem;
    gap: 1.25rem;
  }
}


.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.post-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.post-card .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card .featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-body {
  padding: 14px 16px 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #777;
  gap: 6px;
  margin-bottom: 8px;
}

.post-meta .author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.post-meta .dot {
  color: #999;
}

.post-cats {
  margin-bottom: 6px;
}

.post-cats .cat {
  font-size: 12px;
  text-transform: uppercase;
  color: #ed593f;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-right: 6px;
  text-decoration: none;
}

.post-cats .cat:hover {
  text-decoration: underline;
}

.post-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.post-title a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-title a:hover {
  color: #ed593f;
}


/* Employee Verification block */
.nb-footer .mt-4 {
  margin-top: 1.5rem; /* aligns with other footer spacing */
}

.nb-footer .mt-4 h6 {
  font-size: 15px;
  font-weight: 600;
  color: #eeeeee;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nb-footer .mt-4 p {
  font-size: 13px;
  line-height: 1.6;
  color: #eeeeee !important;
  margin: 0;
}

.nb-footer .mt-4 a {
  color: #ed593f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nb-footer .mt-4 a:hover {
  color: #c9402a;
  text-decoration: underline;
}
/* === Courses Section Styles === */
.nb-courses-section {
  background: #f7f9fc;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
}

.nb-courses-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.nb-courses-section .section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.nb-courses-section .section-header p {
  color: #555;
  font-size: 15px;
}

/* === Flex Layout for Cards === */
.courses-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* space between cards */
}

/* Each Card */
.course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 30px);
  display: flex;
  flex-direction: column;
  max-width: 380px;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Top Accent Line */
.course-card .accent {
  height: 5px;
  width: 100%;
}

/* Thumbnail */
.course-card .thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Body */
.course-card .body {
  padding: 25px 25px 30px;
}

.course-card .body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.course-card .body .subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 14px;
}

.course-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.course-card ul li {
  font-size: 14px;
  color: #222;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.course-card ul li::before {
  content: "";
}

/* Training Section */
.course-card .includes-title {
  color: #0078ff;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}

.course-card .includes-text {
  color: #333;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Learn Button */
.btn-learn {
  background: #ff5b0f;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-learn:hover {
  background: #e44f00;
  transform: translateY(-2px);
  color: #fff;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .course-card {
    flex: 1 1 calc(45% - 30px);
  }
}

@media (max-width: 767px) {
  .nb-courses-section {
    padding: 50px 20px;
  }

  .courses-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .course-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .course-card .body {
    padding: 20px;
  }

  .btn-learn {
    width: 100%;
    text-align: center;
  }
}





.logo img {
    height: 44px;
    width: auto;
  }








/* ======================================================
   === Enhanced Mobile Responsiveness Add-on (v2) ===
   ====================================================== */

/* Large tablets */
@media (max-width: 1024px) {
  .container, .wrap { padding: 0 5px; margin: 40px auto; }
  .container, .wrap p{text-align: justify;}
  header .nav, .footer-content { padding: 0 20px; }
  .trust-legal-page .content-area { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .archive-grid, .search-grid, .grid, .posts-grid { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
  .course-card { flex: 1 1 calc(45% - 20px); }
  .subscribe-section { padding: 40px 20px; }
  .footer-col ul li {display: block;}
}

/* Tablets & Landscape mobiles */
@media (max-width: 768px) {
  body { font-size: 15px; line-height: 1.7; }
  header .nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 6px 14px;
  }

  .logo img {
    height: 32px;
    width: auto;
  }

  .logo {
    font-size: 18px;
    gap: 6px;
  }

  .nav-links a {
    font-size: 14px;
    margin-left: 12px;
  }

  .btn-nav {
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 4px;
  }

  .hero { flex-direction: column; justify-content: center; text-align: center; min-height: auto; padding: 60px 20px; }
  .hero-inner { margin: 0; padding: 20px; max-width: 100%; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .subscribe-content h2 { font-size: 30px; }
  .subscribe-content p { font-size: 16px; }
  .courses-row { flex-direction: column; align-items: center; gap: 20px; }
  .course-card { max-width: 100%; flex: 1 1 100%; }
  .trust-legal-page .content-area { grid-template-columns: 1fr; }
  .right-sidebar { margin-top: 2rem; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 1.25rem; padding: 1.5rem 1rem; }
  .footer-col h4 { font-size: 1rem; }
  .footer-col ul li {display: block;}
  .footer-col ul li a { font-size: 0.85rem;}
  .comment-list .children { margin-left: 1rem; }
  .contact-grid, .archive-grid, .search-grid { grid-template-columns: 1fr; }
  .search-form input[type="search"] { width: 180px; }
  .archive-card .thumb img, .search-card .thumb img { height: 160px; }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  header .nav {
    padding: 6px 12px;
  }

  .logo img {
    height: 26px;
  }

  .logo {
    font-size: 16px;
    gap: 4px;
  }

  .nav-links a {
    font-size: 13px;
    margin-left: 10px;
  }

  .btn-nav {
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 4px;
  }

  .hero h1 { font-size: 28px; }
  .subscribe-content h2 { font-size: 24px; }
  .subscribe-logos { gap: 16px; flex-wrap: wrap; }
  .subscribe-section { margin: 50px 0; padding: 20px; }
  .grid, .posts-grid, .archive-grid, .search-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 10px; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
  .contact-form, .legal-content { padding: 1.25rem; }
  .comment-form input, .comment-form textarea { font-size: 0.95rem; }
  .newsletter-form { flex-direction: column; gap: 8px; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  .employee-verification, .mt-4 { text-align: center; }
  .footer-col ul li {display: block;}
}

/* Ultra small (≤360px) */
@media (max-width: 360px) {
  .hero h1 { font-size: 24px; }
  .btn-learn, .btn-nav { padding: 10px 16px; font-size: 13px; }
  .course-card .body { padding: 16px; }
  .subscribe-content p { font-size: 15px; }
}


/* --- Display / Hide Utility Classes --- */

/* Default: show on all */
.show-web,
.show-mobile {
  display: block;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .show-web { display: none !important; }
}

/* Hide on desktop */
@media (min-width: 769px) {
  .show-mobile { display: none !important; }
}


/* --- Floating "Network Bulls" Button (Mobile Only) --- */
.mobile-float-home {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1000;
  background: #111827;          /* Dark background */
  color: #fff;
  border-radius: 50px;           /* Rounded pill shape */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.25s ease;
}

/* Icon styling */
.mobile-float-home .icon {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

/* Hover effect (for touch-hover devices) */
.mobile-float-home:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Show only on mobile */
@media (min-width: 769px) {
  .mobile-float-home {
    display: none !important;
  }
}
