/* ===== Base reset ===== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ===== Layout container ===== */
.header__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Top scrolling bar ===== */
.topbar {
  height: 34px;
  background: #111;
  color: #f3f3f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  font: 500 13px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.topbar__track {
  display: flex;
  gap: 50px;
  will-change: transform;
  animation: marquee 18s linear infinite;
}

.topbar__text {
  white-space: nowrap;
  padding-left: 50px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Header ===== */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Brand/Logo */
.brand img {
  height: 46px;
  width: auto;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.nav__link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #2b2b2b;
  padding: 8px 0;
  position: relative;
  opacity: 0.9;
}

.nav__link:hover { opacity: 1; color: #f57c00; }

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #f57c00;
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: #f57c00;
  opacity: 1;
}

/* ===== Mobile (so it won’t break) ===== */
@media (max-width: 680px) {
  .header__inner {
    height: auto;
    padding: 14px 0;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .nav {
    gap: 16px;
    flex-wrap: wrap;
  }
}


/* ================= HERO (STRONG VERSION) ================= */
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    #f57c00 0%,
    #ff9f1c 100%
  );
  padding: 140px 0;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.hero-inner {
  position: relative;
  width: min(1200px, 92%);
  margin: auto;
  max-width: 700px;
}

/* Small badge */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Headline */
.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero h1 span {
  color: #fff2cc;
}

/* Description */
.hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 15px 38px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary {
  background: #fff;
  color: #f57c00;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-primary:hover {
  background: #fff2cc;
}

.btn-outline:hover {
  background: #fff;
  color: #f57c00;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 110px 0;
  }

  .hero h1 {
    font-size: 38px;
  }
}

/* ================= ABOUT / BRAND STORY ================= */
.about {
  background: #fff;
  padding: 110px 0;
}

.about-inner {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Text */
.about-label {
  display: inline-block;
  color: #f57c00;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.about-text h2 {
  font-size: 38px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 520px;
}

/* Link */
.about-link {
  font-weight: 600;
  text-decoration: none;
  color: #f57c00;
  position: relative;
}

.about-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f57c00;
  transition: width 0.25s ease;
}

.about-link:hover::after {
  width: 100%;
}

/* Mobile */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-text h2 {
    font-size: 32px;
  }
}


/* ================= PRODUCTS SECTION ================= */
.products {
  background: #fafafa;
  padding: 120px 0;
}

.products-inner {
  width: min(1200px, 92%);
  margin: auto;
}

/* Head */
.products-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.products-label {
  display: inline-block;
  color: #f57c00;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.products-head h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.products-head p {
  font-size: 17px;
  color: #666;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 20px;
  margin: 22px 22px 10px;
}

.product-card p {
  font-size: 15px;
  color: #555;
  margin: 0 22px 28px;
  line-height: 1.6;
}

/* CTA */
.products-cta {
  text-align: center;
  margin-top: 60px;
}

/* Mobile */
@media (max-width: 768px) {
  .products-head h2 {
    font-size: 32px;
  }
}

/* ================= WHY CHOOSE US ================= */
.why {
  background: #fff;
  padding: 120px 0;
}

.why-inner {
  width: min(1200px, 92%);
  margin: auto;
}

/* Head */
.why-head {
  max-width: 620px;
  margin-bottom: 70px;
}

.why-label {
  display: inline-block;
  color: #f57c00;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.why-head h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.why-head p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* Cards */
.why-card {
  background: #fafafa;
  padding: 45px 40px;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
}

/* Mobile */
@media (max-width: 768px) {
  .why-head h2 {
    font-size: 32px;
  }
}

/* ================= BLOG / INSIGHTS ================= */
.blog {
  background: #fafafa;
  padding: 120px 0;
}

.blog-inner {
  width: min(1200px, 92%);
  margin: auto;
}

/* Head */
.blog-head {
  max-width: 600px;
  margin-bottom: 70px;
}

.blog-label {
  display: inline-block;
  color: #f57c00;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.blog-head h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.blog-head p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* Card */
.blog-card {
  background: #fff;
  padding: 40px 38px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 22px;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

/* Link */
.blog-link {
  font-weight: 600;
  color: #f57c00;
  text-decoration: none;
  position: relative;
}

.blog-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f57c00;
  transition: width 0.25s ease;
}

.blog-link:hover::after {
  width: 100%;
}

/* CTA */
.blog-cta {
  margin-top: 60px;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-head h2 {
    font-size: 32px;
  }
}


/* ================= CALL TO ACTION ================= */
.cta {
  background: linear-gradient(135deg, #f57c00, #ff9f1c);
  color: #fff;
  padding: 120px 0;
}

.cta-inner {
  width: min(1000px, 92%);
  margin: auto;
  text-align: center;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 45px;
  opacity: 0.95;
}

/* Actions */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Buttons */
.cta .btn {
  padding: 16px 42px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.cta .btn-primary {
  background: #fff;
  color: #f57c00;
}

.cta .btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.cta .btn-primary:hover {
  background: #fff2cc;
}

.cta .btn-outline:hover {
  background: #fff;
  color: #f57c00;
}

/* Mobile */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 34px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #ccc;
  padding: 80px 0 0;
}

.footer-inner {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
}

/* Brand */
.footer-brand img {
  height: 46px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #aaa;
  max-width: 320px;
}

/* Links & Contact */
.footer h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links a,
.footer-socials a {
  display: block;
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: #f57c00;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Bottom */
.footer-bottom {
  margin-top: 70px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #222;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}


/* ================= PRODUCTS PAGE ================= */
.page-hero {
  background: #fafafa;
  padding: 90px 0;
}

.page-hero__inner {
  width: min(1000px, 92%);
  margin: auto;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #666;
}

.products-page {
  padding: 110px 0;
}

.products-page__inner {
  width: min(1200px, 92%);
  margin: auto;
}

.product-btn {
  display: inline-block;
  margin: 0 22px 28px;
  padding: 12px 28px;
  background: #f57c00;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.product-btn:hover {
  background: #e56f00;
}


/* ================= ABOUT PAGE ================= */
.about-page {
  padding: 110px 0;
  background: #fff;
}

.about-page__inner {
  width: min(900px, 92%);
  margin: auto;
}

.about-block {
  margin-bottom: 60px;
}

.about-block h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.about-block p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 720px;
}

/* Values list */
.about-values {
  list-style: none;
  padding: 0;
}

.about-values li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

/* ================= CONTACT PAGE ================= */
.contact-page {
  padding: 120px 0;
  background: #fff;
}

.contact-page__inner {
  width: min(1100px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* Info */
.contact-info h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

/* Form */
.contact-form h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f57c00;
}

.form-note {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-page__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Contact form success message */
.form-success {
  background: #e9f9f0;
  border: 1px solid #bde5c8;
  color: #1f7a4a;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
}


/* ================= BLOG ================= */
.blog-page {
  padding: 100px 0;
}

.blog-page__inner {
  width: min(1200px, 92%);
  margin: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.blog-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.blog-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.blog-card h3 {
  margin-bottom: 10px;
}

.blog-link {
  text-decoration: none;
  font-weight: 600;
  color: #f57c00;
}

/* Single blog */
.blog-single {
  padding: 100px 0;
}

.blog-single__inner {
  width: min(800px, 92%);
  margin: auto;
}

.blog-single img {
  width: 100%;
  border-radius: 16px;
  margin: 25px 0;
}

.blog-date {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-back {
  display: inline-block;
  margin-top: 40px;
  color: #f57c00;
  text-decoration: none;
  font-weight: 600;
}



/* ================= BLOG LIST ================= */
.blog-list {
  padding: 90px 6%;
  background: #fafafa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 26px;
}

.blog-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.blog-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: #f57c00;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* ================= BLOG VIEW ================= */
.blog-single {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h1 {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 15px;
}


/* Featured image (blog view) */
.blog-featured {
  width: 100%;
  max-width: 820px;
  max-height: 420px;        /* 👈 KEY FIX */
  object-fit: cover;        /* crop nicely */
  display: block;
  margin: 40px auto;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


.blog-body {
  font-size: 17px;
  line-height: 1.85;
  color: #333;
}

.blog-body h2,
.blog-body h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.blog-body img {
  max-width: 100%;
  max-height: 520px;      /* 👈 CONTROL HEIGHT */
  object-fit: contain;    /* show full image */
  display: block;
  margin: 30px auto;
  border-radius: 12px;
}


/* Optional: medium-size images */
.blog-body img.medium {
  max-width: 650px;
}

/* Optional: small images */
.blog-body img.small {
  max-width: 420px;
}

.blog-body a {
  color: #f57c00;
  text-decoration: underline;
}

.blog-body ul {
  padding-left: 22px;
  margin: 20px 0;
}

.blog-body p {
  margin-bottom: 1.4em;
}


/* Blog filters */
.blog-filters {
  text-align: center;
  margin-bottom: 40px;
}

.blog-filters a {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 16px;
  border-radius: 20px;
  background: #eee;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.blog-filters a.active,
.blog-filters a:hover {
  background: #f57c00;
  color: #fff;
}

/* Pagination */
.pagination {
  text-align: center;
  margin-top: 60px;
}

.pagination a {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #eee;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.pagination a.active,
.pagination a:hover {
  background: #f57c00;
  color: #fff;
}


/* Related posts */
.related-posts {
  max-width: 900px;
  margin: 120px auto 0;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.related-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.related-card h3 {
  font-size: 18px;
  line-height: 1.4;
}


/* Blog share */
.blog-share {
  margin: 50px 0 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-share span {
  font-weight: 600;
  margin-right: 6px;
}

.blog-share a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 20px;
  background: #f4f4f4;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.blog-share a:hover {
  background: #f57c00;
  color: #fff;
}


/* ================= BLOG COMMENTS ================= */
.blog-comments {
  max-width: 900px;
  margin: 100px auto 0;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.blog-comments h2 {
  margin-bottom: 30px;
}

.comment-form {
  margin-bottom: 40px;
}

.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.comment-form textarea {
  margin-bottom: 15px;
}

.comment-list .comment-item {
  background: #fafafa;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.comment-item strong {
  display: block;
  font-size: 15px;
}

.comment-item span {
  font-size: 12px;
  color: #777;
}

.comment-item p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.comment-success {
  color: #0f5132;
  background: #d1e7dd;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.comment-error {
  color: #842029;
  background: #f8d7da;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}


/* Threaded comments */
.comment-item {
  background: #fafafa;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  position: relative;
}

.comment-item span {
  display: block;
  font-size: 12px;
  color: #777;
}

.reply-btn {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #f57c00;
  text-decoration: none;
}

.reply-btn:hover {
  text-decoration: underline;
}

.comment-replies {
  margin-left: 30px;
  margin-top: 15px;
  border-left: 3px solid #eee;
  padding-left: 18px;
}



/* ================= HOME BLOG SECTION ================= */
.home-blog {
  padding: 100px 6%;
  background: #fff;
}

.home-blog__inner {
  max-width: 1200px;
  margin: auto;
}

.home-blog__head {
  text-align: center;
  margin-bottom: 60px;
}

.home-blog__label {
  color: #f57c00;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.home-blog__head h2 {
  font-size: 38px;
  margin: 10px 0 14px;
}

.home-blog__head p {
  color: #555;
  max-width: 560px;
  margin: auto;
}

/* Grid */
.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

/* Card */
.home-blog__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-blog__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

/* Image */
.home-blog__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.home-blog__content {
  padding: 28px;
}

.home-blog__date {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.home-blog__content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.home-blog__content p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Link */
.home-blog__link {
  font-weight: 600;
  color: #f57c00;
  text-decoration: none;
}

.home-blog__link:hover {
  text-decoration: underline;
}

/* CTA */
.home-blog__cta {
  text-align: center;
  margin-top: 60px;
}


/* View more blogs section */
.home-blog__more-section {
  margin-top: 70px;
  text-align: center;
}

.home-blog__more-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.home-blog__more-section {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}


/* Home blog CTA button (isolated, no clash) */
.home-blog__cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;

  background: transparent;
  border: 2px solid #f57c00;
  color: #f57c00;

  transition: all 0.3s ease;
}

.home-blog__cta-btn:hover {
  background: #f57c00;
  color: #fff;
}




/* ================= HOME BLOG ================= */
.home-blog {
  padding: 120px 0;
  background: #fafafa;
}

.home-blog__inner {
  width: min(1200px, 92%);
  margin: auto;
}

.home-blog__head {
  text-align: center;
  margin-bottom: 70px;
}

.home-blog__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f57c00;
}

.home-blog__head h2 {
  font-size: 38px;
  margin: 14px 0;
}

.home-blog__head p {
  max-width: 620px;
  margin: auto;
  color: #555;
}

/* Featured */
.home-blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 90px;
}

.home-blog-featured img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

.home-blog-featured__badge {
  background: #f57c00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}

.home-blog__category {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #f57c00;
}

/* Grid */
.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.home-blog__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.home-blog__card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.home-blog__content {
  padding: 28px;
}

.home-blog__content h3 {
  margin: 12px 0;
  font-size: 22px;
}

.home-blog__content p {
  color: #555;
  line-height: 1.6;
}

.home-blog__link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: #f57c00;
  text-decoration: none;
}

/* CTA */
.home-blog__footer {
  margin-top: 70px;
  text-align: center;
}

.home-blog__cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #f57c00;
  color: #f57c00;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .home-blog-featured {
    grid-template-columns: 1fr;
  }
}


/* ================= BLOG PAGINATION ================= */
.blog-pagination {
  margin: 70px auto 0;
  text-align: center;
}

.blog-pagination a {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

.blog-pagination a:hover {
  background: #f57c00;
  color: #fff;
  border-color: #f57c00;
}

.blog-pagination a.active {
  background: #f57c00;
  color: #fff;
  border-color: #f57c00;
}

.blog-pagination .page-prev,
.blog-pagination .page-next {
  background: #f9fafb;
}














