
.bc-section { padding: 60px 0; background: #f8f9fa; }
.bc-section-header { text-align: center; margin-bottom: 40px; }
.bc-tagline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pc);
    margin-bottom: 10px;
}
.bc-tagline::before,
.bc-tagline::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--pc);
    border-radius: 2px;
}
.bc-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--sc);
    letter-spacing: -0.5px;
    margin: 0 0 10px;
}
.bc-title span { color: var(--pc); }
.bc-divider {
    width: 50px;
    height: 3px;
    background: var(--pc);
    border-radius: 3px;
    margin: 0 auto;
}

/* Cards */
.bc-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.bc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    text-decoration: none;
}
.bc-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.bc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.bc-card:hover .bc-card-img img { transform: scale(1.06); }

.bc-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--pc);
    color: #fff;
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    line-height: 1.2;
}
.bc-date-badge strong { display: block; font-size: 1.2rem; font-weight: 800; }
.bc-date-badge span   { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; }

.bc-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bc-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.bc-card-meta span {
    font-size: 0.75rem;
    color: #7a849e;
    display: flex;
    align-items: center;
    gap: 4px;
}
.bc-card-meta span i { color: var(--pc); font-size: 0.7rem; }

.bc-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sc);
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bc-card:hover .bc-card-title { color: var(--pc); }

.bc-card-excerpt {
    font-size: 0.82rem;
    color: #7a849e;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pc);
    text-decoration: none;
    transition: gap 0.2s;
    margin-top: auto;
}
.bc-read-more:hover { gap: 10px; color: var(--pc); text-decoration: none; }

/* View all */
.bc-view-all {
    text-align: center;
    margin-top: 36px;
}
.bc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid var(--pc);
    color: var(--pc);
    background: transparent;
}
.bc-btn:hover {
    background: var(--pc);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.bs-section { padding: 60px 0; background: #fff; }




/* ── Breadcrumb ─────────────────────────────── */
.bread-section {
    background: linear-gradient(135deg, var(--pc) 0%, var(--sc) 100%);
    height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.bread-pattern { overflow: hidden; }
.bread-circle {
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    position: absolute;
}
.bread-circle-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle at 30% 30%, var(--pc), var(--sc));
    top: -100px; left: -50px;
}
.bread-circle-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle at 40% 40%, var(--pc), #fff);
    top: 50%; right: 10%;
    animation-delay: -5s;
}
.bread-circle-3 {
    width: 150px; height: 150px;
    background: radial-gradient(circle at 50% 50%, var(--sc), var(--pc));
    bottom: -30px; left: 20%;
    animation-delay: -10s;
}
.bread-circle-4 {
    width: 400px; height: 400px;
    background: radial-gradient(circle at 60% 60%, #fff, var(--pc));
    top: -150px; right: -100px;
    animation-delay: -15s;
    opacity: 0.1;
}
.bread-circle-5 {
    width: 180px; height: 180px;
    background: radial-gradient(circle at 35% 35%, var(--sc), var(--pc));
    bottom: 20%; right: 25%;
    animation-delay: -7s;
}
@keyframes float {
    0%,100% { transform: translate(0,0) scale(1); }
    25%      { transform: translate(30px,-30px) scale(1.1); }
    50%      { transform: translate(-20px,30px) scale(0.9); }
    75%      { transform: translate(40px,20px) scale(1.05); }
}
.bread-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.08) 0%,
        transparent 50%,
        rgba(255,255,255,0.08) 100%);
}
.bread-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.2);
    margin-bottom: 14px;
    animation: slideDown 0.8s ease-out;
}
@keyframes slideDown {
    from { opacity:0; transform:translateY(-30px); }
    to   { opacity:1; transform:translateY(0); }
}
.bread-nav {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 26px;
    border: 1px solid rgba(255,255,255,0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: slideUp 0.8s ease-out 0.2s both;
}
@keyframes slideUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}
.bread-item {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.bread-item:hover { color: #fff; transform: translateY(-1px); text-decoration: none; }
.bread-separator  { color: rgba(255,255,255,0.6); font-size: 0.65rem; }
.bread-active     { color: #fff; font-weight: 700; font-size: 0.88rem; }

@media (max-width: 768px) {
    .bread-section { height: 260px; }
    .bread-title   { font-size: 1.8rem; }
    .bread-nav     { padding: 8px 18px; font-size: 0.8rem; }
}

/* ── Filter label ───────────────────────────── */
.blog-filter-bar {
    background: #fff;
    border-bottom: 3px solid var(--pc);
    padding: 14px 0;
    margin-bottom: 0;
}
.blog-filter-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sc);
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-filter-label i { color: var(--pc); }
.blog-filter-label a {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--pc);
    text-decoration: none;
    font-weight: 600;
}
.blog-filter-label a:hover { text-decoration: underline; }

/* ── Blog area ──────────────────────────────── */
.blog-area-wrap { padding: 60px 0; background: #f8f9fa; }

/* Section heading */
.blog-section-head { text-align: center; margin-bottom: 44px; }
.blog-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pc);
    margin-bottom: 10px;
}
.blog-tagline::before,
.blog-tagline::after {
    content: '';
    width: 28px; height: 2px;
    background: var(--pc);
    border-radius: 2px;
}
.blog-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sc);
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}
.blog-section-title span { color: var(--pc); }
.blog-section-divider {
    width: 48px; height: 3px;
    background: var(--pc);
    border-radius: 3px;
    margin: 0 auto;
}

/* Cards */
.blog-post-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.blog-post-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    text-decoration: none;
}
.blog-post-img {
    position: relative;
    overflow: hidden;
    height: 210px;
}
.blog-post-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.blog-post-card:hover .blog-post-img img { transform: scale(1.07); }
.blog-post-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.45) 0%,
        transparent 60%);
}
.blog-post-date {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--pc);
    color: #fff;
    border-radius: 10px;
    padding: 6px 13px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}
.blog-post-date strong { display: block; font-size: 1.15rem; font-weight: 800; }
.blog-post-date span   { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }

.blog-post-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.blog-post-meta span {
    font-size: 0.74rem;
    color: #7a849e;
    display: flex;
    align-items: center;
    gap: 4px;
}
.blog-post-meta span i { color: var(--pc); font-size: 0.7rem; }
.blog-post-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--sc);
    margin: 0 0 10px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-post-card:hover .blog-post-title { color: var(--pc); }
.blog-post-excerpt {
    font-size: 0.83rem;
    color: #7a849e;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pc);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
    border: none;
    background: none;
    padding: 0;
}
.blog-read-more:hover {
    gap: 10px;
    color: var(--pc);
    text-decoration: none;
}

/* Pagination */
.blog-pagination-wrap {
    padding: 36px 0 0;
    display: flex;
    justify-content: center;
}
.blog-pagination-wrap .styled-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-pagination-wrap .styled-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 8px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--sc);
    background: #fff;
    border: 1px solid #e2e8f5;
    text-decoration: none;
    transition: all 0.18s;
}
.blog-pagination-wrap .styled-pagination li a:hover,
.blog-pagination-wrap .styled-pagination li a.active {
    background: var(--pc);
    border-color: var(--pc);
    color: #fff;
}

/* Empty state */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
}
.blog-empty i { font-size: 3.5rem; color: #dee2e6; display: block; margin-bottom: 16px; }
.blog-empty h4 { color: #7a849e; font-weight: 600; margin-bottom: 8px; }
.blog-empty p  { color: #b0bace; font-size: 0.88rem; }










/*state Widget*/

/* States Widget */
.st__section__title {
  position: relative;
  padding-bottom: 20px;
}
.st__section__title .display-6 {
  color: #1a1a1a;
  letter-spacing: -0.5px;
}
.st__section__title .circle {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--pc);
  margin: 15px auto 0;
  border-radius: 2px;
}
.st__service__box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}
.st__service__box:hover {
  border-color: var(--pc);
  box-shadow: 0 4px 20px rgba(220, 0, 0, 0.1);
  transform: translateY(-4px);
}
.st__service__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.st__service__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.st__service__content {
  padding: 20px;
  text-align: center;
  background: #fff;
}
.state_title {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  display: block;
}
.st__service__box:hover .state_title {
  color: #ff8c00;
}
.st-service-area a {
  text-decoration: none;
  display: block;
  height: 100%;
}
@media (max-width: 767px) {
  .st__service__content {
    padding: 15px;
  }
  .state_title {
    font-size: 16px;
  }
}

/*Cities*/

.city-card{
  border: 2px solid #ffd700;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.4);
}