/* spacing for body because header fixed */
body {
  padding-top: 160px;
  font-family: "Roboto", sans-serif;
}
.top-header {
  background: linear-gradient(
    45deg,
    #098493e0 0%,
    #20dd8eeb 35%,
    #ffffff 35%,
    #ffffff 65%,
    #098493e0 65%,
    #20dd8eeb 100%
  );
}

/* Blink Effect */
.blink-text {
  animation: blink 1s infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Hide on Mobile */
@media (max-width: 768px) {
  .top-header {
    display: none;
  }
}
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  transition: all 0.3s ease;
}

.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ================= TOP STRIP ================= */
.top-strip {
  background: linear-gradient(
    45deg,
    #098493e0 0%,
    #20dd8eeb 35%,
    #ffffff 35%,
    #ffffff 65%,
    #098493e0 65%,
    #20dd8eeb 100%
  );
  transition: all 0.3s ease;
}

.hide-top {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 !important;
}

/* Search Box */
.search-box {
  border: 1px solid #226e49;
  border-radius: 10px;
  height: 50px;
  overflow: hidden;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 14px;
}

/* Rounded Icon Box */
.icon-box {
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  border: 1px solid rgba(221, 221, 221, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

/* Blink animation */
.blink-text {
  animation: blink 1s infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Hide search on small screen */
@media (max-width: 576px) {
  .search-wrapper {
    display: none;
  }
}

/* ===== NAVBAR STYLE ===== */
.main-nav {
  height: 48px;
}

/* Divider */
.nav-divider {
  width: 1px;
  height: 20px;
  background: #e5e5e5;
}

/* Hover dropdown */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Mega menu */
.mega-menu {
  min-width: 380px;
  border-top: 3px solid #20dd8e;
  border-radius: 0 0 10px 10px;
  padding: 20px;
}

/* Large mega */
.mega-large {
  min-width: 600px;
}

/* Dropdown links */
.dropdown-menu a {
  font-size: 14px;
  padding: 6px 10px;
}

.dropdown-menu a:hover {
  color: #198754;
  text-decoration: underline;
}

/* Blink animation */
.blink-text {
  animation: blink 1s infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Call Section */
.call-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile hide */
@media (max-width: 992px) {
  .desktop-menu {
    display: none !important;
  }
}

/* ================= BLINK ================= */
.blink-text {
  animation: blink 1s infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.footer {
  background: #000;
  color: #ccc;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.footer a:hover {
  color: #ccc;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-top {
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid #333;
  font-size: 12px;
}

.social-icons a {
  font-size: 20px;
  margin-right: 12px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 6px;
}

/* blog detail page */

/* NAVBAR */
.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 0;
}
.nav-brand-text {
  font-family: "Roboto", serif;
  font-size: 22px;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-brand-text span {
  color: #000;
}
.navlink {
  color: #000 !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 12px !important;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.navlink:hover {
  color: #000 !important;
  background: var(--primary-light);
}
.navlink.active {
  color: #000 !important;
}
.nav-search-wrap {
  position: relative;
}
.nav-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-size: 14px;
}
.nav-search {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 8px 16px 8px 34px;
  color: #000;
  font-size: 13px;
  outline: none;
  width: 200px;
  transition: all 0.2s;
  font-family: "Manrope", sans-serif;
}
.nav-search::placeholder {
  color: #000;
}
.nav-search:focus {
  border-color: #000;
  width: 230px;
}
.btn-cta {
  background: #000;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 10px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* PAGE HEADER */
.page-header {
  padding: 65x 0 42px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: "Roboto", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-header h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}
.page-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  line-height: 1.7;
}
.cat-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cat-pill {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}
.cat-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cat-pill.active {
  background: #fff;
  color: #000;
  border-color: #fff;
  font-weight: 700;
}

/* BLOG SECTION */
.blog-section {
  padding: 50px 0 70px;
  background: var(--light);
}

/* Section label */
.sec-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.sec-label-txt {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sec-label-txt::before {
  content: "";
  width: 18px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  display: inline-block;
}
.sec-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.sec-label-num {
  font-size: 12px;
  color: #000;
  font-weight: 600;
}

/* FEATURED CARD */
.featured-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 370px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 166, 81, 0.2);
}
.featured-card:hover .featured-title {
  color: #000;
}
.featured-card:hover .fi img {
  transform: scale(1.04);
}
.fi {
  width: 52%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.fi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.feat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #000;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
}
.fb {
  flex: 1;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-cat {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color:#05772c;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.feat-cat::before {
  content: "";
  width: 14px;
  height: 2px;
  background: #05772c;
  border-radius: 2px;
  display: inline-block;
}
.featured-title {
  font-family: "Roboto", serif;
  font-size: 32px;
  font-weight: 800;
  color: #000;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.feat-desc {
  font-size: 14px;
  color: #000;
  line-height: 1.75;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feat-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.m-author {
  display: flex;
  align-items: center;
  gap: 9px;
}
.m-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #55ffa255;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #000;
}
.m-name {
  font-size: 13px;
  font-weight: 700;
  color: #000;
}
.m-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}
.m-info {
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}
.m-info i {
  color: #000;
}
.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-light);
  border: 1.5px solid rgba(0, 166, 81, 0.25);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-decoration: none;
  transition: all 0.2s;
  width: fit-content;
}
.read-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* SMALL BLOG CARDS */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.25s;
  box-shadow: var(--shadow);
  box-shadow: 0 2px 12px rgb(46 46 46 / 18%);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 166, 81, 0.2);
}
.blog-card:hover .bc-title {
  color: #000;
}
.blog-card:hover .bc-img img {
  transform: scale(1.06);
}
.blog-card:hover .bc-arrow {
  background: #000;
  color: #fff;
  border-color: #000;
}
.bc-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}
.bc-cat {
  position: absolute;
  top: 11px;
  left: 11px;
  background: #fff;
  border: 1px solid var(--border);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.bc-read {
  position: absolute;
  bottom: 11px;
  right: 11px;
  background: rgba(13, 13, 18, 0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.bc-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bc-title {
  font-family: "Roboto", serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bc-desc {
  font-size: 12.5px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.bc-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bc-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #55ffa255;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.bc-aname {
  font-size: 13px;
  font-weight:500;
  color: #000;
  line-height: 1.2;
}
.bc-date {
  font-size: 10.5px;
  color: #000;
}
.bc-arrow {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-light);
  border: 1.5px solid rgba(0, 166, 81, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 13px;
  transition: all 0.2s;
}

/* SIDEBAR */
.sw {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  /* padding: 20px; */
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgb(46 46 46 / 18%);
}
.sw-title {
  font-family: "Roboto", serif;
  background: linear-gradient(135deg, #098493e0 0%, #20dd8eeb 100%);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  padding: 12px;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 10px 10px 0px 0px;
}
.sw-title i {
  color: #000;
}
.pp {
  display: flex;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.pp:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pp:first-child {
  padding-top: 0;
}
.pp:hover .pp-title {
  color: #000;
}
.pp-num {
  font-family: "Roboto", serif;
  font-size: 20px;
  font-weight: 800;
  color: rgb(0 166 81 / 56%);
  width: 26px;
  flex-shrink: 0;
  line-height: 1;
}
.pp-img {
  width: 62px;
  height: 58px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
}
.pp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pp-cat {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #000;
  margin-bottom: 3px;
}
.pp-title {
  font-size: 12px;
  font-weight:500;
  color: #000;
  line-height: 1.45;
  transition: color 0.2s;
}
.pp-date {
  font-size: 10.5px;
  color: #000;
  margin-top: 3px;
}
.cat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
  color: #000;
  font-size: 13px;
  font-weight: 500;
}
.cat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cat-row:hover {
  color: #000;
  padding-left: 4px;
}
.cat-cnt {
  background: var(--primary-light);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 20px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag-item {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: var(--light);
  border: 1px solid var(--border);
  color: #000;
  text-decoration: none;
  transition: all 0.2s;
}
.tag-item:hover {
  border-color: #000;
  color: #000;
  background: var(--primary-light);
}

/* NEWSLETTER WIDGET */
.nw {
  background: linear-gradient(135deg, #000, var(--primary-dark));
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nw::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.nw-icon {
  font-size: 28px;
  margin-bottom: 9px;
}
.nw-title {
  font-family: "Roboto", serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.nw-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 14px;
}
.nw-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  padding: 10px 13px;
  color: #fff;
  font-size: 13px;
  outline: none;
  margin-bottom: 9px;
  font-family: "Manrope", sans-serif;
}
.nw-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.nw-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}
.nw-btn {
  width: 100%;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 9px;
  padding: 10px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Manrope", sans-serif;
}
.nw-btn:hover {
  background: #000;
  color: #fff;
}

/* PAGINATION */
.pag {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 38px;
  flex-wrap: wrap;
}
.pg-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.pg-btn:hover {
  border-color: #000;
  color: #000;
  background: var(--primary-light);
}
.pg-btn.active {
  background: #000;
  border-color: #000;
  color: #fff;
}

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 4px solid #000;
  padding: 50px 0 0;
}
.f-brand {
  font-family: "Roboto", serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.f-brand span {
  color: #000;
}
.f-tag {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 5px;
}
.f-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #000;
  margin-bottom: 14px;
}
.f-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 7px;
  transition: all 0.2s;
}
.f-col a:hover {
  color: #000;
  padding-left: 4px;
}
.f-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}
.f-nav a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  padding: 4px 9px;
  border-radius: 6px;
  transition: all 0.2s;
}
.f-nav a:hover {
  color: #000;
}
.f-nav span {
  color: rgba(255, 255, 255, 0.15);
}
.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s;
}
.soc-btn:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-2px);
}
.f-bottom {
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.f-bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.f-bottom a:hover {
  color: #000;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fu {
  animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.d1 {
  animation-delay: 0.05s;
}
.d2 {
  animation-delay: 0.12s;
}
.d3 {
  animation-delay: 0.19s;
}
.d4 {
  animation-delay: 0.26s;
}
.d5 {
  animation-delay: 0.33s;
}
.d6 {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 991px) {
  .featured-card {
    flex-direction: column;
  }
  .fi {
    width: 100%;
    height: 240px;
  }
}
@media (max-width: 767px) {
  .page-header {
    padding: 34px 0 26px;
  }
  .nav-search {
    display: none;
  }
}

.blog-search-wrapper {
  max-width: 600px;
  margin: 15px 0;
}

.blog-search-input {
  height: 42px; /* smaller height */
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  box-shadow: none;
}

.blog-search-input:focus {
  border-color: #2fb68d;
  box-shadow: 0 0 0 2px rgba(47, 182, 141, 0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-search-wrapper {
    max-width: 100%;
  }

  .blog-search-input {
    height: 38px;
    font-size: 13px;
  }
}

.social-widget {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgb(46 46 46 / 18%);
}

.social-title {
  background: linear-gradient(135deg, #098493e0 0%, #20dd8eeb 100%);
  color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  font-family: "Roboto", serif;
}

.social-icons {
  display: flex;
  gap: 12px;
  padding: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  transition: 0.3s ease;
}

.social-btn:hover {
  background: #2fb68d;
  color: #fff;
}
/* end blog details page */

/* enq form  */

.form-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
  background: #d4f8e8;
  border-bottom: 2px solid #0d6efd;
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.form-control,
.form-select {
  border-radius: 12px;
  padding: 14px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #20dd8e;
}

/* Country Box */
.country-box {
  border: 1px solid #ced4da;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #fff;
  height: 58px;
}

/* OTP Button */
.otp-btn {
  background: linear-gradient(90deg, #20dd8e 0%, #098493 100%);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  padding: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.2s;
}

.otp-btn:hover {
  opacity: 0.9;
}

/* Submit */
.submit-btn {
  background: #10b981;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 600;
  color: #fff;
}

.submit-btn:hover {
  background: #059669;
}

/* Mobile Adjustment */
@media (max-width: 991px) {
  .otp-btn {
    width: 100%;
  }
}

.blog-search {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-search button {
  padding: 8px 20px;
  border-radius: 8px;
  border: 2px solid #000;
  background: #000;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}
.p-c-15 {
  padding: 15px;
}
.p-c-15-cat {
  padding: 0px 15px 15px;
}
.blog-search button:hover {
  background: #fff;
  color: #000;
}

.fb .read-btn:hover{background: linear-gradient(135deg, #098493e0 0%, #20dd8eeb 100%); border: none;}
.blog-card:hover .bc-arrow{background: linear-gradient(135deg, #098493e0 0%, #20dd8eeb 100%); border: none;}
.pag{margin-bottom: 40px; display: inline-block;}
.pag a{text-decoration: none; background-color: #f5f5f5; border-radius:5px; padding: 5px 12px; color: #000; text-align: center;}
.page-numbers.current{background: linear-gradient(135deg, #098493e0 0%, #20dd8eeb 100%); border: none; padding:5px 12px; color: #fff; border-radius: 5px; line-height: normal;}
