:root {
  --primary: #4BC8ED;
  --secondary: #2b3990;
  --text-dark: #000000;
  --text-body: #4a4a4a;
  --bg-page: #f8f9fa;
  --border-color: #e5e9f0;
}
.blog-index-page {
  background-color: var(--bg-page);
  min-height: 100vh;
  padding-left: 10px;
  padding-right: 10px;
}
.section-padding {
  padding: 60px 0;
}
.bi-header-banner {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 25px 0;
}
.bi-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bi-page-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
}
.bi-breadcrumb {
  font-size: 14px;
  color: #888;
  font-weight: 600;
}
.bi-breadcrumb a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.bi-breadcrumb a:hover {
  color: var(--primary);
}
.bi-breadcrumb span {
  color: var(--primary);
}
.bi-main-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.bi-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.bi-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bi-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(119, 211, 63, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.bi-card:hover .bi-card-overlay {
    opacity: 1;
}


.bi-read-label {
    display: inline-block;
    background: var(--topbar-blue);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.bi-read-label:hover {
    background: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Remove any arrow icons */
.bi-read-label::before,
.bi-read-label::after {
    display: none !important;
    content: none !important;
} 
.bi-card:hover {
  box-shadow: 0 10px 20px rgba(5, 158, 255, 0.1);
  transform: translateY(-5px);
  border-color: #4BC8ED;
}
.bi-card-img-wrap {
  display: block;
  height: 350px;
  overflow: hidden;
  position: relative;
}
.bi-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bi-card:hover .bi-card-img-wrap img {
  transform: scale(1.05);
}
.bi-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), #f0f8ff);
}
/* yhnnn  */
.bi-card-body {
    position: relative;
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.bi-card-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
}
.bi-card-title a {
    color: #000;
    text-decoration: none;
}
.bi-card-title a:hover {
  color: var(--primary);
}
.bi-card-excerpt {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Pagination */
.bi-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.bi-sidebar {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.bi-widget {
  background: #eafaff;
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 4px;
}
.bi-widget-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}
.bi-widget-title span {
  color: #4ac8ed;
}
.bi-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bi-category-list li {
  border-bottom: 1px solid #f0f0f0;
}
.bi-category-list li:last-child {
  border-bottom: none;
}
.bi-category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.bi-category-list a:hover,
.bi-category-list a.is-active {
  color: #4ac8ed;
}
.bi-category-list a span {
  font-weight: 400;
  color: #999;
}
.bi-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bi-recent-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.bi-recent-list img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
.bi-recent-list a {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s;
}
.bi-recent-list a:hover {
  color: #4ac8ed;
}
.bi-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bi-tags-cloud a {
  display: inline-block;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.bi-tags-cloud a:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
@media (max-width: 1024px) {
  .bi-main-layout {
    grid-template-columns: 1fr 280px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .bi-main-layout {
    grid-template-columns: 1fr;
  }
  .bi-sidebar {
    order: 2;
  }
}
@media (max-width: 767px) {
  .bi-header-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .bi-page-title {
    font-size: 24px;
  }
  .bi-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   CTA CSS STARTS
========================================= */
.cta-banner {
  padding: 35px 0;
  background: #0e2238; /* Dark navy blue background */
  margin-bottom: 40px;
  width: 100%;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left side text wrapper */
.cta-banner > .container-1200 > div:first-child {
  flex: 1;
}

.cta-banner > .container-1200 > div > h2 {
  color: #7bc4e3; /* Light blue heading */
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.cta-banner > .container-1200 > div > p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Clock icon */
.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
  display: inline-block;
}

/* Button styling */
.cta-banner .btn-cta {
  background: #7bc4e3; /* Light blue button */
  color: #ffffff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.cta-banner .btn-cta:hover {
  background: #65b3d2;
  transform: translateY(-2px);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .cta-banner > .container-1200 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cta-banner > .container-1200 > div > p {
    justify-content: center;
  }
}
/*